Good afternoon everybody,
in an XY Chart I would like to render both label and circle, is it possible?
Another question, I really can't find where to change the label font and font-size of the labels, any help?
Thank you
Good afternoon everybody,
in an XY Chart I would like to render both label and circle, is it possible?
Another question, I really can't find where to change the label font and font-size of the labels, any help?
Thank you
XY chart allow multiple bullet on a series. In your case, one bullet will be render:label
and another render:circle
.
You can change the label style using TextFormatter.
Refer Formatting Strings – amCharts 4 Documentation
Thank you for you help, I really missed the solutions.
Have a nice day
I add the second index to show the dots, I would like to change the size of the circles, I try to change from 10 to 1 or event 40 but it doesn't change, is a bug?
I'm using the 8.1.43
Can you try circle type bullet stroke.width
value?
If I change stroke.width
value actually it works but only if I increase the value.
1 is actually the default value, if I try to set 0,1 (I try even 0.1) it is not decreasing. It looks like the default size is the minimum.
You are right.
I found that amchart has property to change circle bullet size, it might not be exposed in the IA implementation.
https://www.amcharts.com/docs/v4/tutorials/using-circle-bullets/#Setting_radius
Default size is 5px. If you want to change the bullet size using CSS then
g circle {
r: 2 !important;
}