Completed
Last Updated: 16 Mar 2015 07:49 by ADMIN
ADMIN
George
Created on: 03 Apr 2014 08:00
Category: ChartView
Type: Feature Request
0
ADD. RadChartView - Add support for the series to be drawn with Custom DashStyle
Add the ability a user to be able to use a Custom DashStyle in the following scenario:

this.Chart.ShowLegend = true;
this.Chart.Series.Add(new LineSeries() { LegendTitle = "DDDD" });
this.Chart.ChartElement.LegendElement.Items[0].Element.BorderDashStyle = System.Drawing.Drawing2D.DashStyle.Custom;

for (int i = 0; i < 10; i++)
{
    this.Chart.Series[0].DataPoints.Add(i);
}

The following article describes how to use a Custom DashStyle: How to: Draw a Custom Dashed Line
0 comments