Blazor Scatter Charts

    The Ignite UI for Blazor Scatter Chart belongs to a group of charts that show the relationship among items in distinct series of data or to plot data items using numeric x and y coordinates. These charts draw attention to uneven intervals or clusters of data. They are often used to plot scientific data, and can highlight the deviation of collected data from predicted results. Also, you can use them to organize data chronologically (even if the data is not in chronological order).

    Blazor Scatter Marker Chart

    Blazor Scatter Marker Chart renders as a collection of markers, each having a pair of numeric X/Y values that determines its location in the Cartesian coordinate system. You can create this type of chart in the IgbDataChart control by binding your data to a IgbScatterSeries, as shown in the example below:

    Blazor Scatter Line Chart

    Blazor Scatter Line Chart renders as a collection of markers connected by a straight lines, each having a pair of numeric X/Y values that determines its location in the Cartesian coordinate system. You can create this type of chart in the IgbDataChart control by binding your data to a IgbScatterLineSeries, as shown in the example below:

    Blazor Scatter Spline Chart

    Blazor Scatter Spline Chart renders as a collection of markers connected by a curved spline, each having a pair of numeric X/Y values that determines its location in the Cartesian coordinate system. You can create this type of chart in the IgbDataChart control by binding your data to a IgbScatterSplineSeries, as shown in the example below:

    Blazor Scatter High Density Chart

    Use the Blazor Scatter High Density (HD) Chart to bind and show scatter data ranging from thousands to millions of data points with very little loading time. Due to this chart type being designed for such a large amount of points, it is visualized as tiny dots as opposed to full sized markers, and displays areas with the most data using a higher color density representing a cluster of data points. You can create this type of chart in the IgbDataChart control by binding your data to a IgbHighDensityScatterSeries, as shown in the example below:

    Blazor Scatter Area Chart

    Blazor Scatter Area Chart draws a colored surface based on a triangulation of X and Y data with a numeric data value assigned to each point. This chart is useful for rendering heat maps, magnetic field strength or Wi-Fi strength in an office. You can create this type of chart in the IgbDataChart control by binding your data to a IgbScatterAreaSeries, as shown in the example below:

    Blazor Scatter Contour Chart

    Blazor Scatter Contour Chart draws colored contour lines based on a triangulation of X and Y data with a numeric data value assigned to each point. This chart is useful for rendering heat maps, magnetic field strength or Wi-Fi strength in an office. You can create this type of chart in the IgbDataChart control by binding your data to a IgbScatterContourSeries, as shown in the example below:

    Additional Resources

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

    API References

    The following table lists API members mentioned in the above sections:

    Chart Type Control Name API Members
    Scatter Marker IgbDataChart IgbScatterSeries
    Scatter Line IgbDataChart IgbScatterLineSeries
    Scatter Spline IgbDataChart IgbScatterSplineSeries
    High Density Scatter IgbDataChart IgbHighDensityScatterSeries
    Scatter Area IgbDataChart IgbScatterAreaSeries
    Scatter Contour IgbDataChart IgbScatterContourSeries