Search found 9140 matches
- Thu Jun 16, 2022 9:38 am
- Forum: VCL
- Topic: Drawing a specific bandline on an IsoSurface plot
- Replies: 1
- Views: 193
Re: Drawing a specific bandline on an IsoSurface plot
Hello, I'm afraid there's no property to do this. However, you can do a trick. You can draw the series twice. - First, draw the series without BandPen the first time, and prepare a special palette with a single Level . - Secondly, draw the series without Brush and with a custom Palette which has a s...
- Wed Jun 15, 2022 2:13 pm
- Forum: VCL
- Topic: Exception with TSelectorTool and Eurekalog
- Replies: 2
- Views: 263
Re: Exception with TSelectorTool and Eurekalog
Hello, I don't have EurekaLog here, but I've done a simple example creating a thousand forms containing a TChart with a TBarSeries and a TSelectorTool and, looking at the Task Manager while it does the job, the memory looks stable at about 2,9MB. SelectorToolMemory.zip Feel free to modify the exampl...
- Wed Jun 15, 2022 1:26 pm
- Forum: VCL
- Topic: Use TeeChart in an IntraWeb application
- Replies: 10
- Views: 4214
Re: Use TeeChart in an IntraWeb application
Hello,
You need to add the folder where you uncompressed the zip to the "Library path" so the compiler can find the IWCompTeeChart unit.
- Wed Jun 15, 2022 1:24 pm
- Forum: VCL
- Topic: Map Series and Zoom
- Replies: 1
- Views: 199
Re: Map Series and Zoom
Hello Peter, Indeed, the event is capturing the action and not propagating the event. If you want to change this behaviour, you can set CancelMouse property to False : procedure TForm1.Chart1ClickSeries(Sender: TCustomChart; Series: TChartSeries; ValueIndex: Integer; Button: TMouseButton; Shift: TSh...
- Thu Jun 09, 2022 1:35 pm
- Forum: VCL
- Topic: Use TeeChart in an IntraWeb application
- Replies: 10
- Views: 4214
Re: Use TeeChart in an IntraWeb application
Hello, The Pro packages would probably work for you but I've made new ones separated in 3 folders (Pro, Std, and StdCom) for more clarity. Note the "Std" packages are for TeeChart Standard/Lite shipped with the IDE, while the "StdCom" packages are for TeeChart Standard Commercial version. TeeChart 2...
- Thu Jun 09, 2022 5:16 am
- Forum: VCL
- Topic: color of line segemnt if hovering
- Replies: 1
- Views: 228
Re: color of line segemnt if hovering
Hello Willi,
Yes, you can change the Series'
Yes, you can change the Series'
Selected.Hover.Pen
properties. Ie:
Code: Select all
Series1.Selected.Hover.Pen.Color:=clGreen;
- Thu Jun 09, 2022 5:13 am
- Forum: VCL
- Topic: Axis Labels Behind Shape Series?
- Replies: 1
- Views: 205
Re: Axis Labels Behind Shape Series?
Hello John,
I'm not sure to understand the situation. The shape series is clipped by default in the chartrect so the axes labels are always shown in a simple example for me here:
I'm not sure to understand the situation. The shape series is clipped by default in the chartrect so the axes labels are always shown in a simple example for me here:
- Tue Jun 07, 2022 5:48 pm
- Forum: VCL
- Topic: Use TeeChart in an IntraWeb application
- Replies: 10
- Views: 4214
Re: Use TeeChart in an IntraWeb application
Hello,
Sorry for the delay here.
Find attached the packages for TeeChart v2022 for Intraweb 15 in RAD 11.
Sorry for the delay here.
Find attached the packages for TeeChart v2022 for Intraweb 15 in RAD 11.
- Tue May 24, 2022 3:27 pm
- Forum: VCL
- Topic: Saving and re-using internal bitmap
- Replies: 6
- Views: 635
Re: Saving and re-using internal bitmap
Hello, You could draw your million lines into a separate bitmap and draw it at Chart1BeforeDrawSeries : void __fastcall TForm3::Chart1BeforeDrawSeries(TObject *Sender) { //... if (backInvalid) { backChart = new TBitmap(); //backChart->Transparent = true; backChart->Canvas->Pen->Color = clGray; backC...
- Tue May 24, 2022 4:41 am
- Forum: FMX
- Topic: FMX TChartListBox not working
- Replies: 9
- Views: 1200
Re: FMX TChartListBox not working
Hello, It seems like the "normal" way of finding loaded resources to free them causes memory leaks. This is probably a bug in RAD Studio so we implemented your workaround or using a variable. We also fixed the problem with the SeriesItems being loaded at design-time. I'll send you the latest modific...
- Mon May 23, 2022 2:05 pm
- Forum: VCL
- Topic: Saving and re-using internal bitmap
- Replies: 6
- Views: 635
Re: Saving and re-using internal bitmap
Hello,
Drawing a million lines is always slow. That's why the majority of techniques we use to improve drawing performance involve reducing the number of lines to be drawn as you can see here.
Drawing a million lines is always slow. That's why the majority of techniques we use to improve drawing performance involve reducing the number of lines to be drawn as you can see here.
- Wed May 18, 2022 8:27 pm
- Forum: VCL
- Topic: Bottom Axis Inverted Oddness...
- Replies: 2
- Views: 445
Re: Bottom Axis Inverted Oddness...
Hello,
I've been able to reproduce the problem so I've added it to the public tracker (#2528).
Thanks for reporting it.
I've been able to reproduce the problem so I've added it to the public tracker (#2528).
Thanks for reporting it.
- Wed May 18, 2022 5:35 pm
- Forum: VCL
- Topic: Still cannot use palette tool
- Replies: 10
- Views: 5758
- Wed May 18, 2022 5:17 pm
- Forum: VCL
- Topic: TPieSeries.ExplodeBiggest = High CPU
- Replies: 1
- Views: 337
Re: TPieSeries.ExplodeBiggest = High CPU
Hello,
Sorry for the delayed reply here.
The problem seems to be on the shadow drawing.
Could you please confirm if hiding it solves the problem for you?
Sorry for the delayed reply here.
The problem seems to be on the shadow drawing.
Could you please confirm if hiding it solves the problem for you?
Code: Select all
Series1.Shadow.Visible:=False;
- Wed May 18, 2022 4:45 pm
- Forum: VCL
- Topic: Repeatedly create Series at Runtime
- Replies: 1
- Views: 333
Re: Repeatedly create Series at Runtime
Hello,
Sorry for the late reply here.
I've done a simple example project to test this and it seems to work without errors for me in RAD 11.1, both with the new and the classic compiler. Please, give it a try at the project above and let us know if it works fine for you.
Sorry for the late reply here.
I've done a simple example project to test this and it seems to work without errors for me in RAD 11.1, both with the new and the classic compiler. Please, give it a try at the project above and let us know if it works fine for you.