Hide chart border
Posted: Fri Jan 30, 2004 5:09 pm
Hi,
I have added a chart to my web page and set the following general properties
There remains grey borders on the outermost bottom and right edge of the chart. How can I hide them?
Thanks
Paul
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