Hide chart border

TeeChart for Microsoft Visual Studio .NET, Xamarin Studio (Android, iOS & Forms) & Monodevelop.
Post Reply
Paul
Newbie
Newbie
Posts: 18
Joined: Fri Jan 09, 2004 5:00 am

Hide chart border

Post by Paul » Fri Jan 30, 2004 5:09 pm

Hi,

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
There remains grey borders on the outermost bottom and right edge of the chart. How can I hide them?

Thanks

Paul

Paul
Newbie
Newbie
Posts: 18
Joined: Fri Jan 09, 2004 5:00 am

Post by Paul » Fri Jan 30, 2004 5:20 pm

Apologies - solved it

.Panel.Bevel.Outer = Steema.TeeChart.Drawing.BevelStyles.None

Post Reply