In my amcharts i like to add a text inside the Rectangle bullet. how to add?
this is what I need:
here is my bullet part of code: ( using amchart5)
series2.bullets.push(function () {
return am5.Bullet.new(root, {
sprite: am5.Rectangle.new(root, {
height: 10,
width: 10,
centerX: 5,
centerY: 10,
stroke: am5.color('#f00'),
}),
});
});
