Search found 9615 matches

by Yeray
Fri Dec 20, 2024 9:29 am
Forum: VCL
Topic: Charts with Bars with Negative values
Replies: 2
Views: 834

Re: Charts with Bars with Negative values

Hello Ed, 1) For the first red bar with a negative value, there is no margin between the red and the axis--how do I create a margin between the red bar and the line at the bottom? You can add some offset to the left axis: Chart1.Axes.Left.MaximumOffset:=10; Chart1.Axes.Left.MinimumOffset:=10; 2) For...
by Yeray
Fri Dec 20, 2024 8:27 am
Forum: VCL
Topic: Performance Issue with Grid Lines and PenStyle psDot
Replies: 1
Views: 431

Re: Performance Issue with Grid Lines and PenStyle psDot

Hello, I'm afraid GDIPlus is slow at drawing dashed lines. However, moving to OpenGL may be a good option for you. In that project, just add TeeGLCanvas to the uses clause and initialize the canvas at the end of your FormCreate : procedure TForm1.FormCreate(Sender: TObject); begin //... Chart1.Canva...
by Yeray
Mon Dec 16, 2024 7:59 pm
Forum: VCL
Topic: TSquarifiedMapSeries Add values
Replies: 6
Views: 5473

Re: TSquarifiedMapSeries Add values

Hello Merops,

You're welcome! :D
by Yeray
Mon Dec 16, 2024 7:48 am
Forum: VCL
Topic: TSquarifiedMapSeries Add values
Replies: 6
Views: 5473

Re: TSquarifiedMapSeries Add values

Hello, Do you know how to remove the "Root" element from the legend ? It distorts the display of the % . The easiest way I can think on is to duplicate the SquarifiedMapSeries; the second one without the root element so it won't be drawn in the chart but can be drawn in the legend. I have 30% and 20...
by Yeray
Fri Dec 13, 2024 8:06 am
Forum: VCL
Topic: TSquarifiedMapSeries Add values
Replies: 6
Views: 5473

Re: TSquarifiedMapSeries Add values

Hello, Sure, here you have a simple example: uses Chart, TeeSquarifiedMap; var Chart1: TChart; procedure TForm1.FormCreate(Sender: TObject); var t : Integer; const numValues=10; begin Chart1:=TChart.Create(Self); Chart1.Parent:=Self; Chart1.Align:=alClient; Chart1.View3D:=False; with TSquarifiedMapS...
by Yeray
Wed Dec 04, 2024 2:00 pm
Forum: JavaScript / HTML5
Topic: I would like to inquire about how to give a different color in the case of a null value in ColorGrid.
Replies: 2
Views: 4234

Re: I would like to inquire about how to give a different color in the case of a null value in ColorGrid.

Hello, You can overwrite the getColor function assigning a known color when the value is null . Here I'm using white color: grid.oldGetColor = grid.getColor grid.getColor = function (value) { const color = "#FFFFFF" if (value === null) return { r: Number.parseInt(color.substr(1, 2), 16), g: Number.p...
by Yeray
Wed Dec 04, 2024 11:09 am
Forum: VCL
Topic: TeeChart + ReportBuilder
Replies: 1
Views: 2856

Re: TeeChart + ReportBuilder

Hello Oleh, The specific error message we receive is as follows: "Cannot open file 'C:\Program Files\CodeGear\RAD Studio\5.0\RBuilder\TeeChart\TeePro900\dcl32.txt'. The system cannot find the path specified." Could you kindly confirm which version of ReportBuilder would be compatible with TeeChart v...
by Yeray
Tue Dec 03, 2024 8:36 am
Forum: VCL
Topic: Problem with uninstalling TeeChart Pro VCL FMX 2020.31\Delphi26
Replies: 1
Views: 1909

Re: Problem with uninstalling TeeChart Pro VCL FMX 2020.31\Delphi26

Hello Ralf,

This error was when running TeeInstall.exe?
I'd run TeeInstall.exe to uninstall TeeChart components from the IDE. Then, I'd run TeeChart uninstaller.
by Yeray
Fri Nov 29, 2024 1:48 pm
Forum: VCL
Topic: Offline installer download
Replies: 1
Views: 2653

Re: Offline installer download

Hello Àlex,

The source code installer only connects to the internet to activate the license.
If you can't do that in a machine but you have access to another machine where you can, you can use that second machine as a bypass.
by Yeray
Fri Nov 22, 2024 10:36 am
Forum: VCL
Topic: Software download
Replies: 1
Views: 3637

Re: Software download

Hello,

This depends on the license you used to log in the client area.
Basically, each license gives access to one year of downloads.
I believe you company has multiple licenses.
Make sure you use the latest one.
For more details, please contact the sales department at sales@steema.com.
by Yeray
Mon Nov 04, 2024 9:39 am
Forum: JavaScript / HTML5
Topic: I would like to inquire about how to apply a legend to a ColorGrid chart.
Replies: 7
Views: 19443

Re: I would like to inquire about how to apply a legend to a ColorGrid chart.

Hello,

You could try adding a second chart at the bottom and use it to draw the legend. Ie:
https://jsfiddle.net/norike82/7aj5p9of/
colorGridLegend.png
colorGridLegend.png (47.05 KiB) Viewed 17278 times
by Yeray
Thu Oct 31, 2024 8:44 am
Forum: JavaScript / HTML5
Topic: I would like to inquire about how to apply a legend to a ColorGrid chart.
Replies: 7
Views: 19443

Re: I would like to inquire about how to apply a legend to a ColorGrid chart.

Hello,

I see you asked something very similar a few months ago.
https://www.steema.com/support/viewtopi ... 18&t=18141
Weren't you able to make it work?

The only difference I see is in the alignment of the legend. Am I missing anything else?
by Yeray
Thu Oct 31, 2024 8:16 am
Forum: JavaScript / HTML5
Topic: I would like to inquire about how to apply a legend to a ColorGrid chart.
Replies: 7
Views: 19443

Re: I would like to inquire about how to apply a legend to a ColorGrid chart.

Hello,

Oups sorry for the confusion! I'll take a look at the js library.
by Yeray
Mon Oct 28, 2024 9:23 am
Forum: JavaScript / HTML5
Topic: I would like to inquire about how to apply a legend to a ColorGrid chart.
Replies: 7
Views: 19443

Re: I would like to inquire about how to apply a legend to a ColorGrid chart.

Hello, Have you tried the TLegendPaletteTool ? Here a simple example: uses Chart, TeeSurfa, TeeLegendPalette; var Chart1: TChart; procedure TForm1.FormCreate(Sender: TObject); begin Chart1:=TChart.Create(Self); with Chart1 do begin Parent:=Self; Align:=alClient; Color:=clWhite; Gradient.Visible:=Fal...
by Yeray
Mon Oct 21, 2024 7:32 pm
Forum: FMX
Topic: TeeChart VCL/FMX v2024 [21 OCT 2024] RELEASE 2024.42.241021
Replies: 0
Views: 6586

TeeChart VCL/FMX v2024 [21 OCT 2024] RELEASE 2024.42.241021

Greetings! Steema Support Central writes to inform you of the availability of the latest TeeChart VCL/FMX 2024.42.241021 release with full RAD Studio 12 Athens Update 2 Patch 1 (RX/DX/CX) support. The new update includes TeeChart Pro and Standard source code installers for all development environmen...