Hello,
You can open the editor through the properties:
Search found 8974 matches
- Tue Apr 06, 2021 11:18 am
- Forum: Activex
- Topic: Editing graphs in VBA Excel at design time
- Replies: 4
- Views: 715
- Thu Apr 01, 2021 11:20 am
- Forum: Activex
- Topic: Editing graphs in VBA Excel at design time
- Replies: 4
- Views: 715
Re: Editing graphs in VBA Excel at design time
Hello,
Please make sure you have the "design mode" activated in Excel:
Then you should be able to open the options menu right-clicking on the chart.
Please make sure you have the "design mode" activated in Excel:
Then you should be able to open the options menu right-clicking on the chart.
- Thu Apr 01, 2021 11:14 am
- Forum: VCL
- Topic: Warnings in Built
- Replies: 1
- Views: 731
- Tue Mar 16, 2021 7:19 am
- Forum: FMX
- Topic: Can't access dataset's
- Replies: 5
- Views: 1596
Re: Can't access dataset's
Hello,
Sorry, I've just realized I wrote just
Sorry, I've just realized I wrote just
FDQuery1
where it should be DataModule1.FDQuery1
. I've edited the reply above.- Mon Mar 15, 2021 3:04 pm
- Forum: FMX
- Topic: Can't access dataset's
- Replies: 5
- Views: 1596
Re: Can't access dataset's
Hello,
I'm finding problems with it and I'll do more tests.
In the meanwhile, have you tried to set the series' datasource at runtime? Ie (delphi):
I'm finding problems with it and I'll do more tests.
In the meanwhile, have you tried to set the series' datasource at runtime? Ie (delphi):
Code: Select all
Series1.DataSource:=DataModule1.FDQuery1;
Series1.YValues.ValueSource:='Salary';
Series1.XLabelsSource:='LastName';
- Fri Mar 12, 2021 9:22 am
- Forum: VCL
- Topic: Error opening Delphi rio 10.3
- Replies: 1
- Views: 687
Re: Error opening Delphi rio 10.3
Hello, The error message "Cannot load package *Tee*. It contains unit *, which is also contained in package *Tee*", where any of the *Tee* packages ends with a "0" (*Tee*0), indicates that the TeeChart Standard package that was shipped with the IDE (*Tee*0) is still trying to be loaded, and this cre...
- Fri Mar 12, 2021 9:17 am
- Forum: VCL
- Topic: Use TeeChart in an IntraWeb application
- Replies: 1
- Views: 381
Re: Use TeeChart in an IntraWeb application
Hello,
Find below the packages for that combination:
Find below the packages for that combination:
- Fri Mar 05, 2021 3:07 pm
- Forum: FMX
- Topic: Can't access dataset's
- Replies: 5
- Views: 1596
Re: Can't access dataset's
Hello,
I've tried it in a new simple project and it seems to work without problems:
Have you tried it in a new simple project?
If you still find problems with it, please send us a simple example project we can run as-is to reproduce the problem here?
Thanks in advance.
I've tried it in a new simple project and it seems to work without problems:
Have you tried it in a new simple project?
If you still find problems with it, please send us a simple example project we can run as-is to reproduce the problem here?
Thanks in advance.
- Tue Mar 02, 2021 3:04 pm
- Forum: VCL
- Topic: Show only certain series in legend as checkboxes
- Replies: 1
- Views: 646
Re: Show only certain series in legend as checkboxes
Hello Ed,
I'm afraid the legend doesn't support this level of customization. However, you could draw your own legend manually at the OnAfterDraw event.
I've written a simple example:
I'm afraid the legend doesn't support this level of customization. However, you could draw your own legend manually at the OnAfterDraw event.
I've written a simple example:
- Fri Feb 26, 2021 2:53 pm
- Forum: VCL
- Topic: New Features Demo 64
- Replies: 1
- Views: 597
Re: New Features Demo 64
Hello,
I've been able to reproduce it so I've added it to the public tracker #2404.
Thanks for reporting it.
I've been able to reproduce it so I've added it to the public tracker #2404.
Thanks for reporting it.
- Fri Feb 26, 2021 1:47 pm
- Forum: VCL
- Topic: Support for RAD Studio 10.4.2?
- Replies: 2
- Views: 872
Re: Support for RAD Studio 10.4.2?
Hello,
Yes, it does.
Yes, it does.
- Thu Feb 11, 2021 3:02 pm
- Forum: FMX
- Topic: Chart with non automatic bar aling/size
- Replies: 2
- Views: 1427
Re: Chart with non automatic bar aling/size
Hello,
I'm glad to hear you found a solution.
An alternative would be to play with
I'm glad to hear you found a solution.
An alternative would be to play with
CustomBarWidth
or with the bottom axis scale SetMinMax(min, max)
.- Wed Feb 03, 2021 2:00 pm
- Forum: VCL / FMX
- Topic: When sorting, the size of all the columns changes and the gr
- Replies: 9
- Views: 16899
Re: When sorting, the size of all the columns changes and the gr
Hello,
There's no editor option to sort columns for the moment so I'm afraid the only way to achieve it with code.olá sou novo por aqui, gostaria de saber se a um meio de ordenar as colunas sem precisar de código.
- Wed Feb 03, 2021 1:55 pm
- Forum: VCL
- Topic: Colored map
- Replies: 1
- Views: 1269
Re: Colored map
Hello Claus,
If you want to show values in a map I would try using a
I'd suggest you to take a look at the demo shipped with the binary version:
If you want to show values in a map I would try using a
TWorldSeries
.I'd suggest you to take a look at the demo shipped with the binary version:
- Wed Feb 03, 2021 1:13 pm
- Forum: VCL
- Topic: ‘Margin to axis %' in code?
- Replies: 1
- Views: 960
Re: ‘Margin to axis %' in code?
Hello Pete,
Yes, the property you are looking for is
Yes, the property you are looking for is
Texts.MarginToAxis
. Ie:
Code: Select all
Chart1.Axes.Left.Texts.MarginToAxis:=100;