Bubble Chart with Pie Bullets
This demo shows a bubble chart uses PieChart
elements as bubbles as well as heat rules to size them according to their value.
Related tutorials
Demo source
<!-- Styles -->
<style>
#chartdiv {
width: 100%;
height: 500px;
}
</style>
<!-- Resources -->
<script src="https://cdn.amcharts.com/lib/5/index.js"></script>
<script src="https://cdn.amcharts.com/lib/5/xy.js"></script>
<script src="https://cdn.amcharts.com/lib/5/percent.js"></script>
<script src="https://cdn.amcharts.com/lib/5/themes/Animated.js"></script>
<!-- Chart code -->
<script>
am5.ready(function() {
// Create root element
// https://www.amcharts.com/docs/v5/getting-started/#Root_element
var root = am5.Root.new("chartdiv");
// Set themes
// https://www.amcharts.com/docs/v5/concepts/themes/
root.setThemes([
am5themes_Animated.new(root)
]);
// Create chart
// https://www.amcharts.com/docs/v5/charts/xy-chart/
var chart = root.container.children.push(am5xy.XYChart.new(root, {
panX: true,
panY: true,
wheelY: "zoomXY",
pinchZoomX: true,
pinchZoomY: true
}));
chart.get("colors").set("step", 2);
// Create axes
// https://www.amcharts.com/docs/v5/charts/xy-chart/axes/
var xAxis = chart.xAxes.push(am5xy.ValueAxis.new(root, {
renderer: am5xy.AxisRendererX.new(root, { minGridDistance: 50 }),
tooltip: am5.Tooltip.new(root, {})
}));
var yAxis = chart.yAxes.push(am5xy.ValueAxis.new(root, {
renderer: am5xy.AxisRendererY.new(root, {}),
tooltip: am5.Tooltip.new(root, {})
}));
// Create series
// https://www.amcharts.com/docs/v5/charts/xy-chart/series/
var series0 = chart.series.push(am5xy.LineSeries.new(root, {
calculateAggregates: true,
xAxis: xAxis,
yAxis: yAxis,
valueYField: "y",
valueXField: "x",
valueField: "value",
tooltip: am5.Tooltip.new(root, {
labelText: "x: {valueX}, y: {valueY}, value: {value}"
})
}));
// Add bullet
// https://www.amcharts.com/docs/v5/charts/xy-chart/series/#Bullets
var pieChartTemplate = am5.Template.new({});
series0.bullets.push(function(root, series, dataItem) {
if (dataItem.dataContext.pieData) {
var pieChart = root.container.children.push(am5percent.PieChart.new(root, {
width: 100,
height: 100,
radius: am5.p100,
centerX: am5.p50,
centerY: am5.p50
}, pieChartTemplate));
var series = pieChart.series.push(am5percent.PieSeries.new(root, {
valueField: "value",
categoryField: "category"
}));
series.labels.template.set("forceHidden", true);
series.ticks.template.set("forceHidden", true);
series.data.setAll(dataItem.dataContext.pieData);
return am5.Bullet.new(root, {
sprite: pieChart
});
}
});
// Add heat rule
// https://www.amcharts.com/docs/v5/concepts/settings/heat-rules/
series0.set("heatRules", [{
target: pieChartTemplate,
min: 50,
max: 150,
dataField: "value",
key: "width"
}]);
series0.strokes.template.set("strokeOpacity", 0);
// Add scrollbars
// https://www.amcharts.com/docs/v5/charts/xy-chart/scrollbars/
chart.set("scrollbarX", am5.Scrollbar.new(root, {
orientation: "horizontal"
}));
chart.set("scrollbarY", am5.Scrollbar.new(root, {
orientation: "vertical"
}));
var data = [{
y: 10,
x: 14,
value: 20,
pieData: [{
category: "Category #1",
value: 1200
}, {
category: "Category #2",
value: 500
}, {
category: "Category #3",
value: 765
}, {
category: "Category #4",
value: 260
}]
}, {
y: 5,
x: 11,
value: 80,
pieData: [{
category: "Category #1",
value: 200
}, {
category: "Category #2",
value: 600
}, {
category: "Category #3",
value: 350
}]
}, {
y: -10,
x: 8,
value: 19,
pieData: [{
category: "Category #1",
value: 352
}, {
category: "Category #2",
value: 266
}, {
category: "Category #3",
value: 512
}, {
category: "Category #4",
value: 199
}]
}, {
y: -6,
x: 5,
value: 65,
pieData: [{
category: "Category #1",
value: 200
}, {
category: "Category #2",
value: 300
}, {
category: "Category #3",
value: 599
}, {
category: "Category #4",
value: 512
}]
}]
series0.data.setAll(data);
// Make stuff animate on load
// https://www.amcharts.com/docs/v5/concepts/animations/
series0.appear(1000);
chart.appear(1000, 100);
}); // end am5.ready()
</script>
<!-- HTML -->
<div id="chartdiv"></div>