React Sparkline

    The Ignite UI for React Sparkline is a lightweight charting control. It is intended for rendering within a small-scale layout such as within a grid cell but can also be rendered alone. The Sparkline has several visual elements and corresponding features that can be configured and customized such as the chart type, markers, ranges, trendlines, unknown value plotting, and tooltips.

    React Sparkline Example

    The following example shows all the different types of Sparkline available. The type is defined by setting the displayType property. If the displayType property is not specified, then by default, the Line type is displayed.

    Like this sample? Get access to our complete React toolkit and start building your own apps in minutes. Download it for free.

    Sparkline Recommendations

    Is the Sparkline chart right for your project?

    The primary benefit of the Sparkline control compared to other charting controls is that it can render in a limited space such as a grid cell with all its visual elements shown.

    The React Sparkline has the ability to mark the data points with elliptical icons to indicate the highest, lowest, first, last, and negative values. The markers can be customized with a desired shape, color, or image.

    Sparkline Use Cases

    • You have a compact space to display a chart in.
    • You want to show trends in a series of values, such as weekly revenue.

    Sparkline Best Practices

    • Always start the Y-Axis (left or right axis) at 0 so data comparison is accurate.
    • Order time-series data from left to right.
    • Use visual attributes like solid lines to show a series of data.

    When Not to Use Sparkline

    • You need to analyze the data in detail.
    • You need to display every label of the data points. It only allows showing high and low values on the Y-Axis, and first and last values on the X-Axis.

    Sparkline Data Structure

    • It requires one-dimensional data.
    • The data set must contain at least two numeric fields.
    • The text in the data source fields can be used to display the first and last label on the X-Axis.

    Sparkline Types

    The React Sparkline supports the following types of sparklines by setting the displayType property accordingly:

    • Line: Displays the line chart type of Sparkline with numeric data, connecting the data points with line segments. At least two data points must be supplied to visualize the data in Sparkline.
    • Area: Displays the Area chart type of Sparkline with numeric data. This is like line type with additional steps of closing the area after each line is drawn. At least two data points must be supplied to visualize the data in Sparkline.
    • Column: Displays the Column chart type of Sparkline with numeric data. Some may refer to it as vertical bars. This type can render a single data point, but it would require specifying the minimum value range property (minimum) in Sparkline so the supplied single data point can be visible, otherwise the value will be treated as the minimum value and will not be visible.
    • WinLoss: This type is similar in its visual appearance to Column chart type, in which the value of each column is equal to either the positive maximum (for positive values) or the negative minimum (for negative value) of the data set. The idea is to indicate a win or loss scenario. For the Win/Loss chart to display properly, the data set must have both positive and negative values. If the WinLoss sparkline is bound to the same data as the other types such as the Line type, which can be bound to a collection of numeric values, then the React Sparkline will select two values from the collection - the highest and the lowest - and will render the sparkline based upon those values.

    Markers

    The React Sparkline allows you to show markers as circular-colored icons on your series to indicate the individual data points based on X/Y coordinates. Markers can be set on sparklines of display types of Line, Area, and Column. The WinLoss type of sparkline does not currently accept markers. By default, markers are not displayed, but they can be enabled by setting the corresponding marker visibility property.

    Markers in the sparkline can be placed in any combination of the following locations:

    • All: Display markers for all data points in the sparkline.
    • Low: Display markers on the data point of the lowest value. If there are multiple points at the lowest value, it will show on each point with that value.
    • High: Display markers on the data point of the highest value. If there are multiple points at the highest value, it will show on each point with that value.
    • First: Display a marker on the first data point in the sparkline.
    • Last: Display a marker on the last data point in the sparkline.
    • Negative: Display markers on the negative data points plotted in the sparkline.

    All of the markers mentioned above can be customized using the related marker type's property in aspects of color, visibility, and size. For example, the Low markers above will have properties lowMarkerBrush, lowMarkerVisibility, and lowMarkerSize.

    Normal Range

    The normal range feature of the React Sparkline is a horizontal stripe representing some pre-defined meaningful range when the data is being visualized. The normal range can be set as a shaded area outlined with the desired color.

    The normal range can be wider than the maximum data point or beyond, and it can also be as thin as the sparkline's Line display type, to serve as a threshold indicator, for instance. The width of the normal range is determined by the following three properties, which serve as the minimum settings required for displaying the normal range:

    By default, the normal range is not displayed. When enabled, the normal range shows up with a light gray color appearance, which can also be configured using the normalRangeFill property.

    You can also configure whether to show the normal range in front of or behind the plotted series in your React Sparkline by setting the displayNormalRangeInFront property.

    Trendlines

    The React Sparkline has support for a range of trendlines that display as another layer on top of the actual sparkline layer. To display a sparkline, you can use the trendLineType property.

    The trendlines are calculated according to the algorithm specified by the trendLineType property using the values of the data the the chart is bound to.

    Trendlines can only be displayed one at a time and by default, the trendline is not displayed.

    The sample below shows all the available trendlines via the dropdown:

    Unknown Value Interpolation

    The React Sparkline can detect unknown values and render the space for unknown values through a specified interpolation algorithm. If your data contains null values and you do not use this feature, meaning no interpolation is specified, the unknown value will not be plotted.

    To plot the unknown values, you can set the unknownValuePlotting property of the React Sparkline. The sample below shows the differences between the values of the unknownValuePlotting property, allowing you to toggle it on or off using a checkbox:

    Sparkline in Data Grid

    You can embed the React Sparkline in a template column of data grid or other UI controls that support templates. The following code example shows how to do this:

    Additional Resources

    You can find more information about related chart types in these topics:

    API References

    The following is a list of API members mentioned in the above sections: