Anthony P

Results 26 comments of Anthony P

Yes it's possible. As mentioned in the [docs](https://www.amcharts.com/docs/v5/concepts/common-elements/html-content/#Tooltips), you need to set the `labelHTML` property in the tooltip, so the adapter needs to be on that property: ``` tooltip.adapters.add("labelHTML", function(text,...

There might be several things going on but it's hard to say going by just a stack trace. A few things that stand out - - `d.AmStockChart is not a...

Standalone tooltips such as those on axis range fills are not location-aware. You need to explicitly set its [pointerOrientation](https://www.amcharts.com/docs/v4/reference/tooltip/#pointerOrientation_property).

I forced a zero value on a couple of our gauge demos and the zero is centered correctly for me on Firefox and Chrome. Can you provide a codepen?

You can use the [settings value change callback](https://www.amcharts.com/docs/v5/concepts/events/#Settings_value_change) to monitor the scrollbar's `start` and `end` updates and adjust showTooltipOn your series/sprite accordingly: ``` scrollbar.on('start', (start, target) => { updateShowTooltipOn(start, target.get('end'))...

You can set [`forceInactive`](https://www.amcharts.com/docs/v5/reference/ispritesettings/#forceInactive_property) to true on your slice template to disable all interactions. ``` series.slices.template.setAll({ // ... forceInactive: true }) ``` Note that this will also disable tooltips. If...

You need to set [`calculateTotals`](https://www.amcharts.com/docs/v5/reference/ivalueaxissettings/#calculateTotals_property) to true in your value axis to enable `{valueYSum}` . More info in [this tutorial](https://www.amcharts.com/docs/v5/tutorials/totals-on-column-stacks/#Preparing_value_axis).

amCharts5 issues should be posted in the [amCharts5 repo](https://github.com/amcharts/amcharts5/issues).

Are you referring to the labels next to the slices? If so, see here: https://www.amcharts.com/docs/v4/chart-types/pie-chart/#Changing_slice_label_content If that's not what you're referring to, can you please clarify?

Can you please clarify with a screenshot of what you're trying to modify?