Hi All,
how to convert
YEMChart.Series(AtRiskStep).asLine.Pointer.Style = TeeChart.EPointerStyle.psRectangle to TeeChart in .Net version?
Thanks
Nick Sheng
convert TeeChart in ActiveX to .Net verion issue?
-
- Newbie
- Posts: 6
- Joined: Thu Aug 11, 2005 4:00 am
-
- Newbie
- Posts: 6
- Joined: Thu Aug 11, 2005 4:00 am
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi Nick,
or this:
Hope this helps!
Yes, you can do this:how to convert
YEMChart.Series(AtRiskStep).asLine.Pointer.Style = TeeChart.EPointerStyle.psRectangle to TeeChart in .Net version?
Code: Select all
CType(TChart1(AtRiskStep), Steema.TeeChart.Styles.Line).Pointer.Style = Steema.TeeChart.Styles.PointerStyles.Rectangle
Code: Select all
Dim Line1 As New Steema.TeeChart.Styles.Line(TChart1.Chart)
Line1.Pointer.Style = Steema.TeeChart.Styles.PointerStyles.Rectangle
Try this:and also this line of code
Me.TChartYEMChart.Series(AtRiskStep).Color = System.Convert.ToUInt32(AtRiskStep)
Code: Select all
TChart1(AtRiskStep).Color = Color.FromArgb(AtRiskStep)
Best Regards,
Narcís Calvet / 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 |
-
- Newbie
- Posts: 6
- Joined: Thu Aug 11, 2005 4:00 am
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi Nick,
Yes it is.
Yes it is.
Best Regards,
Narcís Calvet / 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 |