franz-86

Results 9 comments of franz-86

no problem, thanks for the reply

what if I need to add axis ranges at dynamical values depending on the visible scope of the plot? For example only 2 vertical lines at 1/3 and 2/3 of...

thanks, that's a good idea. I might still need to dynamically change the label text but the icon remains fixed

Thanks! `clickTarget: "none"` also disable tooltip from the plot. I will need to implement `legend.itemContainers.template.events.on("hover"` handler, isn't it? How can I access the visibility of the tooltip of the corresponding...

yes, clear, but I would like to customise click and hover behavior, after setting `clickTarget:"none"` As you suggested ``` legend.itemContainers.template.events.on("click", function(ev) { // do whatever needed }); ``` controls the...

Brilliant!!! It works fine many many thanks

you're right, but how can I know what bullet is being created when I execute `series.bullets.push` ?

many thanks for your suggestion! This eventHandler solve my problem: chart.plotContainer.events.on("click", function(){ const dataItem = series.get("tooltip").dataItem const round = dataItem.dataContext.round alert("Clicked on round " + round) })

solved .. the thumb utilises the states "hover" and "down", where the grey color was enforced ``` scrollbar.thumb.states.create("hover",{ fill: am5.color("#FF0000"), opacity: 1 }) scrollbar.thumb.states.create("down",{ fill: am5.color("#FF0000") }) ```