Martynas Majeris

Results 280 comments of Martynas Majeris

The value axis scale should automatically adjust to negative values, unless explicitly disabled. Would you be able to share your complete chart code?

Follow this tutorial on how to disable toggling in legend: https://www.amcharts.com/docs/v5/concepts/legend/#disabling-toggling You can then add own click events if needed: ```JavaScript legend.itemContainers.template.events.on("click", function(ev) { console.log(ev.target); }); ```

If you set `clickTarget: "none"` on a legend, the related hover effects should be disabled as well: ```JavaScript var legend = chart.children.push(am5.Legend.new(root, { centerX: am5.percent(50), x: am5.percent(50), layout: root.horizontalLayout, clickTarget:...

Oh, I thought you didn't want the tooltip. I suppose, something like this should bring hover effect back: ```JavaScript legend.itemContainers.template.events.on("pointerover", function(ev) { var item = ev.target.dataItem.dataContext; var component = item.component;...

Bullets are created at a later stage than data is validated. If you need to modify a bullet when it is created, why not do that in bullet creation function...

You push a function, which is executed whenever a bullet is created. It receives a target data item as third parameter, which you can use for whatever customization you need...

Oh, it's been a while. Sorry for noticing only now. We don't monitor github issues as closely as other support channels. The solution is very simple. In the example `balloonText`...

Hey, Would you be able to direct this question in our Angular2 repo? https://github.com/amcharts/amcharts3-angular2

Sorry, managed to miss your reply somehow. Would you be able to reproduce the issue without Angular2?

OK. Sounds good. Just post it here when you have the time.