Hello,
the TChart events should be configured on the charts themselves, as the TDashboard component uses SubChart component in order to add Charts.
Before to try to prepare a small code example, could you please confirm which version you're using (vcl or ActiveX) ?
Thanks
Search found 3213 matches
- Mon Feb 24, 2020 10:37 am
- Forum: Activex
- Topic: Dragging charts on a dashboard
- Replies: 1
- Views: 5894
- Mon Feb 24, 2020 9:50 am
- Forum: .NET
- Topic: Xamarin License Issue
- Replies: 20
- Views: 21386
Re: Xamarin License Issue
Hello,
does this happens by creating a new project or just with a specific one ?
does this happens by creating a new project or just with a specific one ?
- Mon Feb 17, 2020 10:25 am
- Forum: FMX
- Topic: z axis on gantt series
- Replies: 12
- Views: 13020
Re: z axis on gantt series
It can be done via code using :
Code: Select all
Chart1.Chart3DPercent := 200;
- Fri Feb 14, 2020 11:48 am
- Forum: FMX
- Topic: z axis on gantt series
- Replies: 12
- Views: 13020
Re: z axis on gantt series
Hello, ok, looking for other alternatives I forgot a to mention a way that could be done by using the actual version. It's by using Gantt series with the ZOrder, and also use the Legend checkboxes in order to manage which ones you want to activate or not. A code example could be : procedure TForm1.F...
- Wed Feb 05, 2020 3:11 pm
- Forum: FMX
- Topic: z axis on gantt series
- Replies: 12
- Views: 13020
Re: z axis on gantt series
Ok, looking at your example or by using a 3D Gantt series I still thinking that could be complidated at the time to control for exmple more 100 cars in a room or several rooms. Wouldn't be better to use a Chart for each room? Do you have an image of a real crokis, although it's done by pencil that y...
- Mon Feb 03, 2020 8:35 am
- Forum: FMX
- Topic: z axis on gantt series
- Replies: 12
- Views: 13020
Re: z axis on gantt series
Hi,
ok, I add this feature as a wish to be considered for next releases.
Please, if you can, send or attach an example image of the result that you'd like to get, it's just to investigate if there a way to accomplish it with TeeChart now.
Thanks.
ok, I add this feature as a wish to be considered for next releases.
Please, if you can, send or attach an example image of the result that you'd like to get, it's just to investigate if there a way to accomplish it with TeeChart now.
Thanks.
- Fri Jan 31, 2020 9:33 am
- Forum: Activex
- Topic: InstallShield 2012 Self-Register problem for TeeChart Pro ActiveX version 2012/19
- Replies: 1
- Views: 5137
Re: InstallShield 2012 Self-Register problem for TeeChart Pro ActiveX version 2012/19
Hi Shia, 1. Am I permitted to distribute the OCX file to our customers, or only to use it in compiling & linking our deliverable EXE ? I want to make sure that I am not violating any licensing rules. Yes, you're able to distribute the ocx to with your application. Please, look at the TeeChart Tutori...
- Thu Jan 30, 2020 10:11 pm
- Forum: FMX
- Topic: z axis on gantt series
- Replies: 12
- Views: 13020
Re: z axis on gantt series
Hi, Hi guys , is it possible used to z axis on gantt series? I'm sorry but, Gantt series does not support z axis. But, I've been thinking about the way to represent the different vehicles at the same rooms, with the possibility to have some on the same dates and found a way that maybe could help : I...
- Thu Jan 30, 2020 5:09 pm
- Forum: Activex
- Topic: InstallShield 2012 Self-Rregister problem in IS2012 for TeeChart Pro ActiveX version 2012/19
- Replies: 1
- Views: 4696
Re: InstallShield 2012 Self-Rregister problem in IS2012 for TeeChart Pro ActiveX version 2012/19
Hi Shia, I'm just preparing an answer to all your questions. In meantime I'd suggest you take a look at the Tutorials included into the TeeChart installation, that talks about distribution. You'll find that information in Tutorial 18 - TeeChart runtime installation requirements (find the tutorials a...
- Thu Jan 30, 2020 5:07 pm
- Forum: Activex
- Topic: TeeChart Pro v2019 (64bit)
- Replies: 3
- Views: 6583
Re: TeeChart Pro v2019 (64bit)
Hi Shia,
I'm glad to hear all is working fine for you.
Thanks
I'm glad to hear all is working fine for you.
Thanks
- Fri Dec 20, 2019 5:13 pm
- Forum: .NET
- Topic: Steema.TeeChart.NET.Xamarin.Forms crashes in Xamarin.Forms
- Replies: 7
- Views: 9578
Re: Steema.TeeChart.NET.Xamarin.Forms crashes in Xamarin.Forms
Hello, I've just done some tests here using the latest nuget version and a simple example project, and it seems that Zoom is working fine on iOS and Android. I've used the following code : ChartView chartView = new ChartView { VerticalOptions = LayoutOptions.FillAndExpand, HorizontalOptions = Layout...
- Fri Dec 20, 2019 11:14 am
- Forum: .NET
- Topic: AnnotationTool doesn't redraw correctly when device rotation occurs.
- Replies: 1
- Views: 4274
Re: AnnotationTool doesn't redraw correctly when device rotation occurs.
Hello, most likely the problem is that you forgot to calculate the correct annotation position inside the Chart. In order to positionate the Annotation or any object we need to draw inside the Chart canvas, the CalcXPosValue and CalcYPosValue methods have to be used. var xpos = area1.CalcXPosValue((...
- Tue Dec 17, 2019 9:39 am
- Forum: .NET
- Topic: Steema.TeeChart.NET.Xamarin.Forms crashes in Xamarin.Forms
- Replies: 7
- Views: 9578
Re: Steema.TeeChart.NET.Xamarin.Forms crashes in Xamarin.Forms
Ok, let me do some tests here and back to you asap.
- Wed Nov 27, 2019 10:50 pm
- Forum: .NET
- Topic: Steema.TeeChart.NET.Xamarin.Forms crashes in Xamarin.Forms
- Replies: 7
- Views: 9578
Re: Steema.TeeChart.NET.Xamarin.Forms crashes in Xamarin.Forms
Sorry for delay in my answer.It seems in the new version, 4.2019.9.10, that zoom is not functional at all. pan still works but I cannot zoom.
Does this happens to you on Android, iOS or both platforms ?
- Thu Nov 14, 2019 10:01 pm
- Forum: .NET
- Topic: Bar chart panning
- Replies: 9
- Views: 10114
Re: Bar chart panning
Hello,
you should be able to change the way that Series marks are displayed outside the Chart rect bounds by setting Clip to true for Series Marks :
you should be able to change the way that Series marks are displayed outside the Chart rect bounds by setting Clip to true for Series Marks :
Code: Select all
bar1.Marks.Clip = true;