React Scatter Charts
The Ignite UI for React 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).
React Scatter Marker Chart
React 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 IgrDataChart
control by binding your data to a IgrScatterSeries
, as shown in the example below:
React Scatter Line Chart
React 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 IgrDataChart
control by binding your data to a IgrScatterLineSeries
, as shown in the example below:
React Scatter Spline Chart
React 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 IgrDataChart
control by binding your data to a IgrScatterSplineSeries
, as shown in the example below:
React Scatter High Density Chart
Use the React 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 IgrDataChart
control by binding your data to a IgrHighDensityScatterSeries
, as shown in the example below:
React Scatter Area Chart
React 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 IgrDataChart
control by binding your data to a IgrScatterAreaSeries
, as shown in the example below:
React Scatter Contour Chart
React 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 IgrDataChart
control by binding your data to a IgrScatterContourSeries
, 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 | IgrDataChart |
IgrScatterSeries |
Scatter Line | IgrDataChart |
IgrScatterLineSeries |
Scatter Spline | IgrDataChart |
IgrScatterSplineSeries |
High Density Scatter | IgrDataChart |
IgrHighDensityScatterSeries |
Scatter Area | IgrDataChart |
IgrScatterAreaSeries |
Scatter Contour | IgrDataChart |
IgrScatterContourSeries |