I have added a chart to my web page and set the following general properties
Code: Select all
With WebChart.Chart
.Aspect.View3D = False
.Axes.Bottom.Title.Text = "Date/Time"
.Header.Visible = False
With .Panel
.Color = Color.White
.MarginBottom = 10
.MarginUnits = Steema.TeeChart.PanelMarginUnits.Pixels
.MarginLeft = 40
End With
With .Legend
.Alignment = Steema.TeeChart.LegendAlignments.Bottom
.LegendStyle = Steema.TeeChart.LegendStyles.Series
.Shadow.Visible = False
.Visible = True
End With
End With
Thanks
Paul