Greetings
In just converted a recent project I am working on from Q1. 2011 Telerik Reporting to Q1, 2013
After converting some of the code to the new version. I notice that my line bars lose their original colors. However, for graph that were of type Bat Chart or Point Chart colors were preserved very well.
In my scenario, I applied an Skin to the Chart objects, subsequently I attempt to overwrite their color settings. So I notice that there is a very strange situation specific to the line chart.
This will work for the Point Chart
The following will work for Bar Charts
The following for some reason will not Work for me on this new Line Chart
I have try everything to make the line Chart work, however I have not come to a solution. What I am doing wrong with respect to a Line Chart in this version Q1, 2013
I will appreciate the response
In just converted a recent project I am working on from Q1. 2011 Telerik Reporting to Q1, 2013
After converting some of the code to the new version. I notice that my line bars lose their original colors. However, for graph that were of type Bat Chart or Point Chart colors were preserved very well.
In my scenario, I applied an Skin to the Chart objects, subsequently I attempt to overwrite their color settings. So I notice that there is a very strange situation specific to the line chart.
This will work for the Point Chart
ChartSeriesItem seriesItem = new ChartSeriesItem();
seriesItem.PointAppearance.FillStyle.MainColor = Color;
seriesItem.PointAppearance.FillStyle.FillType = Telerik.Reporting.Charting.Styles.FillType.Solid;
The following will work for Bar Charts
ChartSeriesItem seriesItem = new ChartSeriesItem();
seriesItem.Appearance.FillStyle.MainColor = Color;
seriesItem.Appearance.FillStyle.FillType = Telerik.Reporting.Charting.Styles.FillType.Solid;
The following for some reason will not Work for me on this new Line Chart
ChartSeries series = new ChartSeries();
series.Appearance.LineSeriesAppearance.Color = Color;
series.Appearance.LineSeriesAppearance.PenStyle = System.Drawing.Drawing2D.DashStyle.Solid;
I have try everything to make the line Chart work, however I have not come to a solution. What I am doing wrong with respect to a Line Chart in this version Q1, 2013
I will appreciate the response