Chart.js/test/fixtures/controller.bubble/radius-data.js
Jukka Kurkela ce74eb76a1 Convert axis options from arrays to objects (#6773)
* Convert axis options from arrays to objects

* Updated all chart type defaults
* Throw errors when axis type or position are not specified
* Avoid raising unnecessary errors when merging options into the default configs

* Fix additional tests

* Ensure scale defaults are set if type is not explicitly defined

* Another step

* Include `scale` as `firstIDs.r`

* update docs

* Update for buildOrUpdateScales

* Update migration guide

* Add test back
2019-11-21 18:46:49 -05:00

48 lines
713 B
JavaScript

module.exports = {
config: {
type: 'bubble',
data: {
datasets: [{
data: [
{x: 0, y: 5, r: 1},
{x: 1, y: 4, r: 2},
{x: 2, y: 3, r: 6},
{x: 3, y: 2},
{x: 4, y: 1, r: 2},
{x: 5, y: 0, r: NaN},
{x: 6, y: -1, r: undefined},
{x: 7, y: -2, r: null},
{x: 8, y: -3, r: '4'},
{x: 9, y: -4, r: '4px'},
]
}]
},
options: {
legend: false,
title: false,
scales: {
x: {display: false},
y: {display: false}
},
elements: {
point: {
backgroundColor: '#444',
radius: 10
}
},
layout: {
padding: {
left: 24,
right: 24
}
}
}
},
options: {
canvas: {
height: 128,
width: 256
}
}
};