mirror of
https://github.com/chartjs/Chart.js.git
synced 2026-01-18 16:04:41 +00:00
* Relocate chart type and dataset type defaults * Update types * Separate overrides and descriptors * Update derived sample, use merge for inherit * Don't merge overrides * Review update
112 lines
2.8 KiB
HTML
112 lines
2.8 KiB
HTML
<!doctype html>
|
|
<html>
|
|
|
|
<head>
|
|
<title>Derived Chart Type</title>
|
|
<script src="../../dist/chart.min.js"></script>
|
|
<script src="../utils.js"></script>
|
|
<style type="text/css">
|
|
canvas{
|
|
-moz-user-select: none;
|
|
-webkit-user-select: none;
|
|
-ms-user-select: none;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<div id="container" style="width: 75%;">
|
|
<canvas id="canvas"></canvas>
|
|
</div>
|
|
<script>
|
|
class Custom extends Chart.controllers.bubble {
|
|
draw() {
|
|
// Call bubble controller method to draw all the points
|
|
super.draw(arguments);
|
|
|
|
// Now we can do some custom drawing for this dataset. Here we'll draw a box around the first point in each dataset, using `boxStrokeStyle` dataset option for color
|
|
var meta = this.getMeta();
|
|
var pt0 = meta.data[0];
|
|
|
|
const {x, y} = pt0.getProps(['x', 'y']);
|
|
const {radius} = pt0.options;
|
|
|
|
var ctx = this.chart.ctx;
|
|
ctx.save();
|
|
ctx.strokeStyle = this.options.boxStrokeStyle;
|
|
ctx.lineWidth = 1;
|
|
ctx.strokeRect(x - radius, y - radius, 2 * radius, 2 * radius);
|
|
ctx.restore();
|
|
}
|
|
}
|
|
Custom.id = 'derivedBubble';
|
|
Custom.defaults = {
|
|
// Custom defaults. Bubble defaults are inherited.
|
|
boxStrokeStyle: 'red'
|
|
};
|
|
// Overrides are only inherited, but not merged if defined
|
|
// Custom.overrides = Chart.overrides.bubble;
|
|
|
|
// Stores the controller so that the chart initialization routine can look it up
|
|
Chart.register(Custom);
|
|
|
|
var color = Chart.helpers.color;
|
|
var bubbleChartData = {
|
|
datasets: [{
|
|
label: 'My First dataset',
|
|
backgroundColor: color(window.chartColors.blue).alpha(0.5).rgbString(),
|
|
borderColor: window.chartColors.blue,
|
|
borderWidth: 1,
|
|
data: [{
|
|
x: randomScalingFactor(),
|
|
y: randomScalingFactor(),
|
|
r: Math.abs(randomScalingFactor()) / 5,
|
|
}, {
|
|
x: randomScalingFactor(),
|
|
y: randomScalingFactor(),
|
|
r: Math.abs(randomScalingFactor()) / 5,
|
|
}, {
|
|
x: randomScalingFactor(),
|
|
y: randomScalingFactor(),
|
|
r: Math.abs(randomScalingFactor()) / 5,
|
|
}, {
|
|
x: randomScalingFactor(),
|
|
y: randomScalingFactor(),
|
|
r: Math.abs(randomScalingFactor()) / 5,
|
|
}, {
|
|
x: randomScalingFactor(),
|
|
y: randomScalingFactor(),
|
|
r: Math.abs(randomScalingFactor()) / 5,
|
|
}, {
|
|
x: randomScalingFactor(),
|
|
y: randomScalingFactor(),
|
|
r: Math.abs(randomScalingFactor()) / 5,
|
|
}, {
|
|
x: randomScalingFactor(),
|
|
y: randomScalingFactor(),
|
|
r: Math.abs(randomScalingFactor()) / 5,
|
|
}]
|
|
}]
|
|
};
|
|
|
|
window.onload = function() {
|
|
var ctx = document.getElementById('canvas').getContext('2d');
|
|
window.myChart = new Chart(ctx, {
|
|
type: 'derivedBubble',
|
|
data: bubbleChartData,
|
|
options: {
|
|
responsive: true,
|
|
plugins: {
|
|
title: {
|
|
display: true,
|
|
text: 'Derived Chart Type'
|
|
},
|
|
}
|
|
}
|
|
});
|
|
};
|
|
</script>
|
|
</body>
|
|
|
|
</html>
|