FlexChart allows you to create mixed charts that offer two key advantages, as follows:
- Combining chart types: Combine two or more chart types in a single chart, for instance, area-bar, bar-line, bar-scatter etc. Plot different metrics in a chart using different chart types and let the end user interpret data easily. In FlexChart, specify a chart type for each series to combine several chart types. To specify the chart type for a series, set the ChartType property of the Series class. Setting this property overrides the ChartType property set for the chart.
- Plotting multiple datasets: Plot data from multiple datasets in a single chart by specifying data source for a series. This is useful when the data to plot lies at multiple places. To specify the data source for a series, set the ItemsSource property of the Series class. Setting this property overrides the ItemsSource property set for the chart.
The following image displays a mixed chart that combines column and line symbols chart types. The chart plots and compares sales and expenses data of four countries.

The following code sets the Column chart type for FlexChart and overrides it by setting the LineSymbols chart type for the Sales series, thereby implementing WPF mixed charts.
xml
<c1:C1FlexChart x:Name="flexChart"
BindingX="Country"
ChartType="Column"
ItemsSource="{Binding DataContext.Data}">
<c1:Series SeriesName="Sales"
Binding="Sales"
ChartType="LineSymbols"/>
<c1:Series SeriesName="Expenses"
Binding="Expenses"/>
</c1:C1FlexChart>
See Also
WPF Area Chart
WPF Bar Chart
WPF Bubble Chart
WPF Column Chart
WPF Financial Charts
WPF Funnel Chart
WPF Line Chart
WPF LineSymbols Chart
WPF Scatter Chart
WPF Spline Chart
WPF SplineArea Chart
WPF SplineSymbols Chart