FlexChart | ComponentOne
FlexChart / Understanding FlexChart / FlexChart Types / WPF Histogram Chart
In This Topic
    WPF Histogram Chart
    In This Topic

    Histogram chart plots the frequency distribution of data against the defined class intervals or bins. These bins are created by dividing the raw data values into a series of consecutive and non-overlapping intervals. Based on the number of values falling in a particular bin, frequencies are then plotted as rectangular columns against continuous x-axis.

    The following representations can created with the help of a histogram.

    The following images show a histogram and a cumulative histogram created using FlexChart.

    WPF Histogram chart Cumulative Histogram chart
    Histogram Cumulative Histogram

    To create a WPF histogram chart, you need to add the Histogram series and set the ChartType property to Histogram. Once you provide relevant data, FlexChart generates frequency distribution for the data and plots the same in histogram. The chart automatically calculates the intervals in which your data is grouped. However, if required, you can also specify the width of these intervals by setting the BinWidth property. Apart from this you can also create a cumulative histogram by setting the CumulativeMode property to true.

    The following code snippet demonstrates how to generate Histogram chart for a particular data.

    <Chart:C1FlexChart x:Name="flexChart"
                       ChartType="Histogram"
                       ItemsSource="{Binding DataContext.Data}"
                       Binding="Y"
                       BindingX="X">
        <Chart:C1FlexChart.AxisX>
            <Chart:Axis Format="0.00"></Chart:Axis>
        </Chart:C1FlexChart.AxisX>
        <Chart:Histogram x:Name="histogramSeries" SeriesName="Frequency"/>            
    </Chart:C1FlexChart>
    
    Note that x-axis of Histogram chart can be shared by other chart series, which can be displayed together with the classic histogram series.

    WPF Frequency Polygon Chart

    A frequency polygon shows a frequency distribution representing the overall pattern in the data. It is a closed two-dimensional figure of straight line segments -created by joining the mid points of the top of the bars of a histogram.

    Use the following steps to create a frequency polygon using histogram chart.

    1. Set the AppearanceType property to FrequencyPolygon. This property accepts value from the HistogramAppearance enumeration.
    2. Set the style for frequency polygon using the FrequencyPolygonStyle property.

    Moreover, you can also create a cumulative frequency polygon by setting the CumulativeMode property to true.

    The following images show a frequency polygon and a cumulative frequency polygon created using FlexChart.

    WPF Frequency Polygon chart WPF Cumulative chart
    Frequency Polygon Cumulative Frequency Polygon

    Use the following code snippet to create a WPF frequency polygon chart.

    hdfghdfg
    XAML
    Copy Code
    <c1:Histogram x:Name="histogramSeries" SeriesName="Frequency" CumulativeMode="True" 
                      AppearanceType="FrequencyPolygon" />
    <c1:Histogram.FrequencyPolygonStyle>
            <c1:ChartStyle Stroke="Red" StrokeThickness="2"/>
    </c1:Histogram.FrequencyPolygonStyle>
    
    C#
    Copy Code
    histogramSeries.AppearanceType = HistogramAppearance.FrequencyPolygon;
    histogramSeries.FrequencyPolygonStyle = new ChartStyle()
    {Stroke = new SolidColorBrush(Color.FromRgb(255, 0, 0))};
    // To create a cumulative frequency polygon
    histogramSeries.CumulativeMode = true;
    

    WPF Gaussian Curve Chart

    Gaussian curve is a bell shaped curve, also known as normal curve, which represents the probability distribution of a continuous random variable. It represents a unimodal distribution as it only has one peak. Moreover, it shows a symmetric distribution as fifty percent of the data set lies on the left side of the mean and fifty percent of the data lies on the right side of the mean.

    Use the following steps to create a Gaussian curve using histogram chart.

    1. Set the AppearanceType property to Histogram. This property accepts value from the HistogramAppearance enumeration.
    2. Set the NormalCurve.Visible property to true to create a Gaussian curve.
    3. Set the style for Gaussian curve using the NormalCurve.LineStyle property.

    Following image illustrates a Gaussian curve created using FlexChart, which depicts probability distribution of scores obtained by students of a university in half yearly examinations.

    WPF Gaussian Curve Chart

    Use the following code snippet to create a WPF Gaussian curve chart.

    XAML
    Copy Code
    <c1:Histogram x:Name="histogramSeries" SeriesName="Frequency"
                              AppearanceType="Histogram" />
    <c1:Histogram.NormalCurve>
            <c1:NormalCurve>
            <c1:NormalCurve.LineStyle>
                <c1:ChartStyle Stroke="Green" StrokeThickness="2"/>
                </c1:NormalCurve.LineStyle>
        </c1:NormalCurve>
    </c1:Histogram.NormalCurve>
    
    C#
    Copy Code
    histogramSeries.AppearanceType = HistogramAppearance.Histogram;
    histogramSeries.NormalCurve.Visible = true;
    histogramSeries.NormalCurve.LineStyle = new ChartStyle() {Stroke = new SolidColorBrush(Color.FromRgb(0, 128, 0))};
    

    Back to Top