Search found 3132 matches

by Sandra
Fri May 26, 2017 3:41 pm
Forum: VCL
Topic: Bar chart export to DXF
Replies: 1
Views: 6125

Re: Bar chart export to DXF

Hello johnnix, I'm afraid Teechart Pro VCL/FMX doesn't support export to DXF format. May be useful for you, use Native Template format (tee) to achieve you want. Also, I would suggest you take a look in our Teechart VCL Feature Matrix , specifically to check the Export formats Teechart supports. Tha...
by Sandra
Thu May 25, 2017 3:43 pm
Forum: VCL
Topic: Bottom Axis highlighting wrong hover over values
Replies: 3
Views: 8332

Re: Bottom Axis highlighting wrong hover over values

Hello Ando, I would like inform you the problem you're experiencing is already fixed for next maintenance release. Here's the bug number http://bugs.teechart.net/show_bug.cgi?id=1830 Note if you works with TeeChart Pro VCL/FMX v2017.21 source code version, we can provide you the fix. Thanks in advance
by Sandra
Thu May 25, 2017 11:39 am
Forum: ActiveX
Topic: Multiple legends support for boxplot charts
Replies: 4
Views: 15787

Re: Multiple legends support for boxplot charts

Hello, I’m afraid your request isn’t possible. We have added that to TeeChart VCL Bugzilla tracker as a wish to consider its implementations in future versions. Here’s the link: http://bugs.teechart.net/show_bug.cgi?id=1873 Feel free to add your mail to the CC list to be automatically notified when ...
by Sandra
Wed May 24, 2017 2:34 pm
Forum: PHP
Topic: TeeChart for PHP on Joomla!
Replies: 2
Views: 28288

Re: TeeChart for PHP on Joomla!

Hello diak,

The current TeeChart PHP include a Joomla plugin and it should work for you in new Joomla versions without problems. Therefore I would like suggest you use the current Joomla files. Could you confirm us if it works as you expect?

Thanks in advance
by Sandra
Tue May 23, 2017 3:44 pm
Forum: VCL
Topic: Point3d AddXYZ?
Replies: 4
Views: 9912

Re: Point3d AddXYZ?

Hello Mike, Many thanks for your indications. I have added the problem to Teechart Pro VCL bugzilla tracker to fix the problem to upcoming versions. Here's the link: http://bugs.teechart.net/show_bug.cgi?id=1871. Feel free to add your mail to the CC list to be automatically notified when an update a...
by Sandra
Mon May 22, 2017 2:21 pm
Forum: VCL
Topic: EOutOfMemory with TSurfaceSeries
Replies: 1
Views: 5711

Re: EOutOfMemory with TSurfaceSeries

Hello Uwe, The problem is caused because the data values you add in your series are irregular. Therefore you need setting the surface's to IrregularGrid=true as do in code below: procedure TForm3.FormCreate(Sender: TObject); var I: Integer; J: Integer; begin Series1.Clear; Series1.IrregularGrid := t...
by Sandra
Mon May 22, 2017 10:51 am
Forum: VCL
Topic: Bottom Axis highlighting wrong hover over values
Replies: 3
Views: 8332

Re: Bottom Axis highlighting wrong hover over values

Hello Ando, Using the code below and the latest Teechart Pro VCL/FMX v2017.21 the problem you're experiencing isn't occurs for us: Uses Series,TeeConst; var Series1:TLineSeries; procedure TForm3.FormCreate(Sender: TObject); var t:Integer; begin Series1 := TLineSeries.Create(Self); Chart1.AddSeries(S...
by Sandra
Fri May 19, 2017 2:26 pm
Forum: .NET
Topic: Xamarin - Custom Axis Zoom bug
Replies: 7
Views: 15983

Re: Xamarin - Custom Axis Zoom bug

Hello yang ching, multiple horizontal axes is a requirement in our app, can we have an estimate of when the bug can be fixed roughly? I've incremented the issue priority but I'm afraid I can't tell you a date for this to be fixed. I see you've added your mail to the ticket so you can be notified whe...
by Sandra
Fri May 19, 2017 11:51 am
Forum: VCL
Topic: Point3d AddXYZ?
Replies: 4
Views: 9912

Re: Point3d AddXYZ?

Hello Mike I'm afraid I can't reproduce the problem you're experiencing here using latest TeeChart Pro/VCL 2017.21 and the code below: uses VCLTee.TeeSurfa, VCLTee.TeePoin3, VCLTee.Series; var points3d :TPoint3DSeries; procedure TForm3.FormCreate(Sender: TObject); begin points3d := TPoint3DSeries.Cr...
by Sandra
Thu May 18, 2017 12:53 pm
Forum: .NET
Topic: Xamarin - Custom Axis Zoom bug
Replies: 7
Views: 15983

Re: Xamarin - Custom Axis Zoom bug

Hello yang ching, Many thanks for the project. Finally, we can reproduce the problem you're experiencing. I have added it to TeeChart.Net bugzilla tracker to fix it to upcoming versions. Here's the link: http://bugs.teechart.net/show_bug.cgi?id=1865 Feel free to add your mail to the CC list to be au...
by Sandra
Tue May 16, 2017 9:52 am
Forum: .NET
Topic: Xamarin - Custom Axis Zoom bug
Replies: 7
Views: 15983

Re: Xamarin - Custom Axis Zoom bug

Hello yang ching, Firstly, I would like inform you that if you add a custom axis is needed assign it to a series. I have modified the code you sent us because it works properly with custom axes and seems zoom works fine as is shown in image below: Xamarin.FormsZoom.png Below you find the project: Sa...
by Sandra
Mon May 15, 2017 4:07 pm
Forum: .NET
Topic: Xamarin - Custom Axis Zoom bug
Replies: 7
Views: 15983

Re: Xamarin - Custom Axis Zoom bug

Hello yang hcing,

After doing some tests, I would like inform you we can't reproduce the problem you're experiencing using latest TeeChart.Xamarin Forms Build 4.0.2017.27030. Could you please, arrange a simple example project we can run as-is to reproduce the problem here?

Thanks in advance
by Sandra
Tue May 02, 2017 11:51 am
Forum: .NET
Topic: Individual styling of labels in axis
Replies: 4
Views: 10842

Re: Individual styling of labels in axis

Hello Calzone, Sorry, I didn't inform you that is necessary use CustomLabels to get the result you expected. I have modified the above code to do as you want. public Form1() { InitializeComponent(); InitializeChart(); } private void InitializeChart() { Steema.TeeChart.Styles.Gantt gantt = new Steema...
by Sandra
Fri Apr 28, 2017 4:43 pm
Forum: .NET
Topic: Individual styling of labels in axis
Replies: 4
Views: 10842

Re: Individual styling of labels in axis

Hello Calzone,

The code below shows you how can change each axis label:

Code: Select all

        tChart1.Axes.Left.Labels.Items[0].Font.Bold = true;
        tChart1.Axes.Left.Labels.Items[1].Font.Size = 15;
Hoping this helps you, otherwise don't hesitate to contact us.

Thanks in advances
by Sandra
Mon Mar 27, 2017 9:01 am
Forum: VCL
Topic: Problems with binary installer...
Replies: 6
Views: 13036

Re: Problems with binary installer...

Hello Whookie, I would like inform that after install the latest binary installer using Teechart Source Code License in my directory appears the Documentation and Examples folders. You can check that in the image below: ExamplesFolder.jpg Therefore, you can't reproduce the problem you experiencing h...