# Scatter Chart
Scatter charts are based on basic line charts with the x-axis changed to a linear axis. To use a scatter chart, data must be passed as objects containing X and Y properties. The example below creates a scatter chart with 4 points.
# Dataset Properties
Namespaces:
data.datasets[index]
- options for this dataset onlyoptions.datasets.scatter
- options for all scatter datasetsoptions.elements.line
- options for all line elementsoptions.elements.point
- options for all point elementsoptions
- options for the whole chart
The scatter chart supports all the same properties as the line chart.
By default, the scatter chart will override the showLine property of the line chart to false
.
The index scale is of the type linear
. This means, if you are using the labels array, the values have to be numbers or parsable to numbers, the same applies to the object format for the keys.
# Data Structure
Unlike the line chart where data can be supplied in two different formats, the scatter chart only accepts data in a point format.
data: [{
x: 10,
y: 20
}, {
x: 15,
y: 10
}]
# Internal data format
{x, y}
← Radar Chart Axes →