[]
FlexChart lets you to create and apply colored regions called chart zones. The colored zones categorize the plotted data on the chart into regions, which makes it easier for the user to read and understand the data. This helps the users to easily identify the category in which a particular data point lies.
To explain how creating zones can be helpful, consider a customer satisfaction survey that aims at identifying whether a customer is a promoter, a passive customer, or a detractor for a specific product. The responses recorded in the survey can be used to calculate NPS (Net Promoter Score) that classifies customers into promoters, passives, and detractors. This scenario can be realized in FlexChart by plotting customer responses as data points in chart and categorizing them in colored zones using area chart as showcased in the following image:
In FlexChart, zones can be created as data series available through the Series class. Each zone can be created as area charts by setting the ChartType property to Area, highlighted in distinct colors. To distinguish each zone, line type data series can be created as thresholds in the chart.
Complete the following steps to create zones in FlexChart.
Create a custom class called SurveyResult to record the survey result data.
public class SurveyResult
{
public int surveyNumber { get; set; }
public int satisfaction { get; set; }
public SurveyResult(int surveyNumber, int satisfaction)
{
this.surveyNumber = surveyNumber;
this.satisfaction = satisfaction;
}
}
Create a custom class called Zone for creating zones in FlexChart.
public class Zone
{
public string Name { get; set; }
public double Value { get; set; }
public Windows.UI.Color Fill { get; set; }
}
Create the instances of the SurveyResult and Zone classes using the following code.
ObservableCollection<SurveyResult> results;
ObservableCollection<Zone> zones;
Initialize new instances of ObservableCollection SurveyResult and Zone classes.
results = new ObservableCollection<SurveyResult>();
zones = new ObservableCollection<Zone>();
Add data source to the FlexChart control.
//Add DataSource to the FlexChart
int[] scores = { 8, 9, 9, 10, 3, 10, 6, 10, 7, 9 };
for (int i = 0; i < 10; i++)
{
results.Add(new SurveyResult(i, scores[i]));
}
//Create Zone
zones.Add(new Zone() { Name = "Zone1", Value = 7, Fill = Windows.UI.Color.FromArgb(255,255,0,0) });
zones.Add(new Zone() { Name = "Zone2", Value = 9, Fill = Windows.UI.Color.FromArgb(255, 255, 255, 0) });
zones.Add(new Zone() { Name = "Zone3", Value = 10, Fill = Windows.UI.Color.FromArgb(255, 34, 139, 34) });
this.flexChart.ItemsSource = results;
this.flexChart.BindingX = "surveyNumber";
this.flexChart.ChartType = ChartType.Scatter;
Add a new FlexChart series.
//Add series in FlexChart
var satisfactionSeries = new Series();
satisfactionSeries.SeriesName = "Satisfaction";
satisfactionSeries.Binding = "satisfaction";
flexChart.Series.Add(satisfactionSeries);
Add zones to legend.
//Add zones to legend
for (int i = 0; i < zones.Count; i++)
{
var series = new Series();
series.ChartType = ChartType.Area;
series.Style = new ChartStyle() { Fill = new SolidColorBrush(zones[i].Fill) };
series.SeriesName = zones[i].Name;
this.flexChart.Series.Add(series);
}
this.flexChart.LegendPosition = Position.Right;
Handle the Rendering event named flexChart.Rendering event to draw the zones in FlexChart. You can use the Rendered event to draw additional elements like lines, rectangles, polygons, ellipses, strings and images apart from basic elements like Title, Series, Axes, Data Labels, Legend, Plot Area, etc.
flexChart.Rendering += (s, e) =>
{
var chart = s as FlexChart;
for (int i = 0; i < zones.Count; i++)
{
//Get Min/Max range from FlexChart
var minY = i == 0 ? flexChart.AxisY.ActualMin : zones[i - 1].Value;
var maxY = i == zones.Count - 1 ? flexChart.AxisY.ActualMax : zones[i].Value;
var minX = flexChart.AxisX.ActualMin;
var maxX = flexChart.AxisX.ActualMax;
var pt1 = chart.DataToPoint(new PointF((float)minX, (float)minY));
var pt2 = chart.DataToPoint(new PointF((float)maxX, (float)maxY));
//Draw Zone Rectangle.
e.Engine.SetFill(new SolidColorBrush(zones[i].Fill));
e.Engine.DrawRect(pt1.X, pt2.Y, Math.Abs(pt2.X - pt1.X), Math.Abs(pt2.Y - pt1.Y));
}
};