Search found 9619 matches

by Yeray
Thu Jan 09, 2025 7:19 am
Forum: VCL
Topic: Higlighting a data point
Replies: 1
Views: 1129

Re: Higlighting a data point

Hello,

There's an example in the TeeNew demo showing this at "All features\Welcome !\Miscellaneous\Series Marks\Custom per point":

Code: Select all

      with Marks[3] do
      begin
        Font.Size:=14;
        Color:=clSilver;
      end;
by Yeray
Mon Dec 23, 2024 10:14 am
Forum: VCL
Topic: Problem with installing TeeChart VCL/FMX v2024 RELEASE 2024.42.241021 on Windows XP, Delphi 2007
Replies: 3
Views: 4655

Re: Problem with installing TeeChart VCL/FMX v2024 RELEASE 2024.42.241021 on Windows XP, Delphi 2007

Hello Julia,

I could run the installer here using your credentials without errors.
I've just sent you a mail with a link to the 7zip containing the installation.

Don't hesitate to let us know if you still find problems with it.
by Yeray
Mon Dec 23, 2024 7:26 am
Forum: VCL
Topic: Problem with installing TeeChart VCL/FMX v2024 RELEASE 2024.42.241021 on Windows XP, Delphi 2007
Replies: 3
Views: 4655

Re: Problem with installing TeeChart VCL/FMX v2024 RELEASE 2024.42.241021 on Windows XP, Delphi 2007

Hello Julia,

Have you tried making a second attempt? The connection to the server sometimes fails on the first try.
by Yeray
Mon Dec 23, 2024 7:22 am
Forum: VCL
Topic: Charts with Bars with Negative values
Replies: 3
Views: 6034

Re: Charts with Bars with Negative values

Hello Ed, is there any way to move the series labels (e.g. "2 Years Before") below the chart, rather than overwriting the series)? That's easier. You only need to hide the Bottom axis pen and add a TColorLineTool . BottomAxisColorLine.png uses VCLTee.TeeTools; var ColorLine1: TColorLineTool; procedu...
by Yeray
Fri Dec 20, 2024 9:29 am
Forum: VCL
Topic: Charts with Bars with Negative values
Replies: 3
Views: 6034

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: 2048

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: 14247

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: 14247

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: 14247

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: 9787

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: 5154

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: 3744

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: 4461

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: 5483

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: 28145

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 25980 times