Hello TeeChart Team, How can I add (prefix) some text to the numerical output (Annotation) shown of the TColorLineTool? I tried to change the Text in the OnDragLine Event like: procedure TfrmXYPlot.XYLimitDragLine(Sender: TColorLineTool); begin Sender.Annotation.Text := 'XY Limit: ' + Sender.Value.T...
Hello Yeray, By Binning the Matrix down to about screen resolution I was able to improve the performance. In addition I used Series.SetNull(Index) to hide areas. Like this: if FIsoLines3D then begin var IndexSurface := ScanSurfaceSeries.AddXYZ(aX, ScanSurfaceSeries.DefaultNullValue, aZ); ScanSurface...
Hello, We have some performance problems drawing large TColorGridSeries of sparse matrices, see attached plot. Basically, there is only the small diagonal patch in the middle where there is data to plot: IsoLinesPlotScreenshot 2025-07-10 150510.png The area of the Red Triangles is empty and doesn’t ...
Hello Yeray, Thanks for the Tip, but all these lines add too much "Noise" to the graphics. I am now creating an extra TPointSeries that contains the violating Points as Yellow semitransparent circles. So the graphics only gets more populated with "stuff" in case there are min/max violations. Capture...
We often show process values/parameters using multiple Line series: Capture.PNG Now we want to highlight values per Line series that are outside certain user given min/max limits. Is there a TChart Tool or a certain Series for that, or do we need to develop our own tool for that? Like drawing someth...
Thanks a lot, we are practically there: NewCapture.PNG I am setting the Position in the Create of the form but it looks like I need to update the position of the extra legend before the painting. One other quick question, how can I change/influence the texts that are shown in the Extra legend, I'd l...
To phrase this question differently, how can I explicitly decide in which of both (or more) Legends any Series is shown?
Because Series.ShowInLegend is global for all Legends.
Thanks for the quick response, that indeed seems to be a way to proceed.
But how can I make sure to just just show the 3 Line Series in THAT extra legend?
Hello, We produce graphics like in the attached plot with TChart, where we use a ColorGrid plus 3 Line Series. Usually we display the Colors of the Color Grid in the Legend. Now we want in addition to show a legend for the 3 Line Series. But when we include the Line Series in the Legend the Color Gr...
I just found out that I can fix this problem by calling "CreateDefaultPalette()" After populating TSurfaceSeries or TColorGridSeries.
That call was not required in previous versions of TChart VCL.
Hello TChart Team, There is a problem/bug since the latest version of TChart VCL, with the Display of 3DGridSeries when "UsePalette" is set/used. Everything is displayed in just ONE color and the Legend just shows Zeros. PaletteProblemCapture1.PNG When I then go into the Chart dialog and Set "UsePal...