Data Point
The "datapoint"
property controls the styling and configurations of individual data points within visualizations. These data points refer to points on a scatter plot, bars, columns, or slices in a pie chart, or data cells in a table.
The '"datapoint"' property can be defined for all visuals. It includes settings for
- showing all datapoints
- default fill color
Syntax
{
"name": "LeanProductivity",
"visualStyles": {
"*": {
"*": {
"dataPoint": [{
"showAllDataPoints": false,
"fill": { "solid": { "color": "#25D0F7" } }
}]
}
}
}
}
Back to Visual Styles