This must be a very basic question but I have not found an answer yet
I have a line series TChart.series(0) with properties defined in the editor. I just want to be able to make visible the points that define the line.
The problem is that the pointer properties are not available for the time series (I cannot get the pointer property of the series TChart.series(0).pointer)
I am using the namespaces Steema.TeeChart and Steema.TeeChart.Styles
Thank you
Unable to make points visible
Re: Unable to make points visible
Hello Yacu,
If you want that the pointers of Line Series are visible, you only need set property pointer.visible=true as do in next line of code:
As you see, I have use Steema.TeeChart.Styles.Line, because not all series have property pointer.
I hope will helps.
Thanks,
If you want that the pointers of Line Series are visible, you only need set property pointer.visible=true as do in next line of code:
Code: Select all
(TChart.series(0) as Steema.TeeChart.Styles.Line).Pointer.Visible = True
I hope will helps.
Thanks,
Best Regards,
Sandra Pazos / Development & Support Steema Software Avinguda Montilivi 33, 17003 Girona, Catalonia Tel: 34 972 218 797 http://www.steema.com |
Instructions - How to post in this forum |
Re: Unable to make points visible
I'm sorry Sandra, I am getting a Syntax error with the sentence
(GBrutos.series(0) as Steema.TeeChart.Styles.Line).Pointer.Visible = True
(GBrutos.series(0) as Steema.TeeChart.Styles.Line).Pointer.Visible = True
Re: Unable to make points visible
Hello Yacu,
Thanks for information, I have modified it.
Thanks,
Thanks for information, I have modified it.
Thanks,
Best Regards,
Sandra Pazos / Development & Support Steema Software Avinguda Montilivi 33, 17003 Girona, Catalonia Tel: 34 972 218 797 http://www.steema.com |
Instructions - How to post in this forum |
Re: Unable to make points visible
Please tell me how did you modify it, because it does not work (syntax error)
Re: Unable to make points visible
Hello Yacu,
Could you tell which technology(.Net Framework, WPF,Silverlight...) and which lenguage(C#,VB,c++) are you using to write your applications? It help us to find a good solution for your problem. On the other hand, would be very helpful for us,too, if you can send your code because we can see the problem exactly and suggest you a correct solution.
Thanks,
Could you tell which technology(.Net Framework, WPF,Silverlight...) and which lenguage(C#,VB,c++) are you using to write your applications? It help us to find a good solution for your problem. On the other hand, would be very helpful for us,too, if you can send your code because we can see the problem exactly and suggest you a correct solution.
Thanks,
Best Regards,
Sandra Pazos / Development & Support Steema Software Avinguda Montilivi 33, 17003 Girona, Catalonia Tel: 34 972 218 797 http://www.steema.com |
Instructions - How to post in this forum |
Re: Unable to make points visible
The application is being developed within the .Net framework 2.0 in Visual Basic with Visual Studio 2010
Re: Unable to make points visible
Hello Yacu,
Is a very strange problem. Could you please send us your code, because we can see exactly problem here and find a good solution for you?
Thanks,
Is a very strange problem. Could you please send us your code, because we can see exactly problem here and find a good solution for you?
Thanks,
Best Regards,
Sandra Pazos / Development & Support Steema Software Avinguda Montilivi 33, 17003 Girona, Catalonia Tel: 34 972 218 797 http://www.steema.com |
Instructions - How to post in this forum |