Line width in Compact Framework
Posted: Wed May 02, 2007 1:07 pm
I am using the pocket PC version of TeeChart with a Windows CE terminal and cannot get the thickness of lines on my chart to change. This is a snippet of my code:
Private PlowHPLine As New Steema.TeeChart.Styles.Line
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
TChart1.Legend.Visible = False
TChart1.Aspect.View3D = False
'* Add lines to the chart, This has to be done in code on Win CE
PlowHPLine.Color = Color.LightBlue
PlowHPLine.LinePen.Width = 8
TChart1.Series.Add(PlowHPLine)
No matter what I make the pen width, the line is always 1 point wide.
Private PlowHPLine As New Steema.TeeChart.Styles.Line
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
TChart1.Legend.Visible = False
TChart1.Aspect.View3D = False
'* Add lines to the chart, This has to be done in code on Win CE
PlowHPLine.Color = Color.LightBlue
PlowHPLine.LinePen.Width = 8
TChart1.Series.Add(PlowHPLine)
No matter what I make the pen width, the line is always 1 point wide.