Is it possible to have a chart with rounded Corners?

TeeChart for ActiveX, COM and ASP
Post Reply
chipshot
Newbie
Newbie
Posts: 18
Joined: Fri Feb 13, 2004 5:00 am

Is it possible to have a chart with rounded Corners?

Post by chipshot » Fri Jul 30, 2004 8:08 pm

Is it possible to have a chart with rounded Corners?

If so, can someone send me a snippet of the code?

Thanks,

Pep
Site Admin
Site Admin
Posts: 3295
Joined: Fri Nov 14, 2003 5:00 am
Contact:

Post by Pep » Sat Jul 31, 2004 9:47 am

Hi,

yes, you can do :

Code: Select all

Private Sub Form_Load()
With TChart1
    .AddSeries scBar
    .Series(0).FillSampleValues (5)
    .Panel.Border.Visible = True
    .Panel.BorderRound = 15
End With
End Sub

chipshot
Newbie
Newbie
Posts: 18
Joined: Fri Feb 13, 2004 5:00 am

Rounded Corners

Post by chipshot » Mon Aug 02, 2004 4:35 pm

I am working in v5. The border property does not look like its available to me. The only properties that I see are:

BackImageInside
BackImageMode
BevelInner
BevelOffset
BevelOuter
BevelWidth
BorderStyle
Color
Gradient
MarginBottom
MarginLeft
MarginRight
MarginTop

Pep
Site Admin
Site Admin
Posts: 3295
Joined: Fri Nov 14, 2003 5:00 am
Contact:

Post by Pep » Tue Aug 03, 2004 1:00 am

Hi,

yes, this feature has been added in the TeeChart Pro v6.

Post Reply