This is a migrated thread and some comments may be shown as answers.

Make Line Larger

1 Answer 55 Views
Chart (Obsolete)
This is a migrated thread and some comments may be shown as answers.
Web Services
Top achievements
Rank 2
Web Services asked on 08 Mar 2012, 06:26 PM
I have a line graph that I dynamically create. I'm trying to make the line thicker but I can't figure it out. Here's what I've tried so far

mySeries.Appearance.PointDimentions.Width = Styles.Unit.Pixel(60)
mySeries.Appearance.PointDimentions.Height = Styles.Unit.Pixel(60) 

Esentially, my line is really thin and I just want to make it thicker. thanks,

1 Answer, 1 is accepted

Sort by
0
Richard
Top achievements
Rank 1
answered on 12 Mar 2012, 10:39 PM
W.S.:

I tested this code and it works to set the width of the series of a line chart:

ChartSeries chartSeries1 = RadChart1.Series[0];
chartSeries1.Appearance.LineSeriesAppearance.Width = 60;

This sets the width of the first series (0-based) to 60.

Hope this helps
Tags
Chart (Obsolete)
Asked by
Web Services
Top achievements
Rank 2
Answers by
Richard
Top achievements
Rank 1
Share this question
or