バブル (垂直スクロール)
const config = {
type: 'bubble',
data: data,
options: {
indexAxis: 'y',
scales: {
x: {
type: 'linear',
display: true,
title: {
display: true,
text: '値'
}
},
y: {
type: 'realtime',
realtime: {
duration: 20000,
refresh: 1000,
delay: 2000,
onRefresh: onRefresh
}
}
},
interaction: {
intersect: false
}
}
};
const data = {
datasets: [
{
label: 'データセット1',
backgroundColor: Utils.transparentize(Utils.CHART_COLORS.red, 0.5),
borderColor: Utils.CHART_COLORS.red,
data: []
},
{
label: 'データセット2',
backgroundColor: Utils.transparentize(Utils.CHART_COLORS.blue, 0.5),
borderColor: Utils.CHART_COLORS.blue,
data: []
}
]
};
const onRefresh = chart => {
const now = Date.now();
chart.data.datasets.forEach(dataset => {
dataset.data.push({
x: Utils.rand(-100, 100),
y: now,
r: +Utils.rand(5, 15).toFixed(2)
});
});
};
const actions = [
{
name: 'ランダム化',
handler(chart) {
chart.data.datasets.forEach(dataset => {
dataset.data.forEach(dataObj => {
dataObj.x = Utils.rand(-100, 100);
dataObj.r = +Utils.rand(5, 15).toFixed(2);
});
});
chart.update();
}
},
{
name: 'データセット追加',
handler(chart) {
const datasets = chart.data.datasets;
const dsColor = Utils.namedColor(datasets.length);
const newDataset = {
label: 'データセット' + (datasets.length + 1),
backgroundColor: Utils.transparentize(dsColor, 0.5),
borderColor: dsColor,
data: []
};
datasets.push(newDataset);
chart.update();
}
},
{
name: 'データ追加',
handler(chart) {
onRefresh(chart);
chart.update();
}
},
{
name: 'データセット削除',
handler(chart) {
chart.data.datasets.pop();
chart.update();
}
},
{
name: 'データ削除',
handler(chart) {
chart.data.datasets.forEach(dataset => {
dataset.data.shift();
});
chart.update();
}
}
];