Questions tagged [amcharts5]
173 questions
0
votes
1 answer
MapPointSeries not calling heatRules in amcharts5?
I have successfully created MapPolygonSeries on amcharts5 with heatRules. But I am trying to add MapPointSeries to set the colour of the bullets. It appears to me that the heatRules are not called at all. Does anyone have a working example, or is…

Jennifer
- 65
- 1
- 7
0
votes
2 answers
amCharts 5: How to Change Series Specific Stroke / Fill Settings in 100% Stacked Area Chart
Reference: 100% Stacked Area Chart
I see colors can be modified as follows:
chart.get("colors").set("colors", [
am5.color("#59A80F"),
am5.color("#EA8676"),
am5.color("#B90504")
]);
How can stroke / fill settings for (only) Motorcycles in the…

tj001
- 47
- 8
0
votes
2 answers
Clickable label in Amcharts5 Stacked Bar Chart
I am trying to add to the Stacked Bar Chart the ability to click on the labels on the left side of the chart, but without effectiveness.
There are some posts on the Internet on how to add links to labels, but they are for Amcharts4 and don't work on…

Wojciech A.
- 174
- 1
- 13
0
votes
1 answer
How do I add an image to a label in AmChart5?
In data I have a am5.Picture object
icon = am5.Picture.new(root, {
height: 28,
src: src
});
The image fits on the text, is not inserted next to it
this doesn't work either
series.labels.template.set("text", "{icon} {name}") // return only…

Tupical
- 36
- 6
0
votes
0 answers
Need Some help for AmChart5?
The RenderHTML is not showing the html
const MyHtmlFile = require('../../index.html');

Susu
- 1
- 1
0
votes
2 answers
AmCharts v5 - Uncaught Error: You cannot have multiple Roots on the same DOM node
I am trying to display 4 charts side by side. Each div has its own id and I have a filtering options that I have to choose from. When I first make the selections and click submit all the charts are being displayed just fine. However, when I have to…

smimar1074
- 1
- 2
0
votes
1 answer
How to remove a particular data from pointseries in amcharts v5
How to remove a particular data by a attribute. Amcharts have option to remove item by Index. is there any way that we can remove a particular data from series by a attribute value?
pointSeries.data.removeIndex(0);
we want something…

Lavan Giri
- 83
- 1
- 2
- 6
0
votes
1 answer
Hiding axis values but keep clockhand in a Gauge chart
i was tinkering with the Gauge Chart from amCharts. Using their docs I was recreating some examples. However I had an Idea in mind which I am absolutely stuck trying to build it.
The starting point is this Example
Is there a way to hide the axis…

polo
- 1
0
votes
1 answer
amCharts5 - How to Hide X-Axis Labels on Gannt Chart?
I'm trying to adapt this code (amCharts 5 Gantt Chart) to my project and want to hide the x-axis labels on this amCharts 5 gannt chart. Any thoughts on how to achieve this?

tj001
- 47
- 8
0
votes
1 answer
How to limit only one active slice per pie chart on amCharts5?
I am trying to replicate the pie chart behaviour from this v4 tutorial on amCharts v5 with no luck:
https://www.amcharts.com/docs/v4/tutorials/one-pulled-slice-per-pie-chart/
The v4 code does not work on v5 (nor getting error). I have debugged it…

Albert Comas
- 3
- 1
0
votes
1 answer
amCharts 5: Auto-adjusting chart height based on a number of data items
I am trying to replicate amCharts 4 Auto-adjusting chart height based on a number of data items with amCharts 5 instead.
I already asked a question on Stack Overflow to understand how amCharts 5 returns the height of an axis that has not been drawn…

soliz
- 735
- 1
- 7
- 17
0
votes
1 answer
amCharts 5: how to hide the last ValueAxis label to avoid truncating it?
amCharts 4 offers the ability to hide the last label of an axis using axis.renderer.maxLabelPosition = 0.95;.
How to achieve the same result in amCharts 5?
The amCharts 5 demo at https://www.amcharts.com/demos/sorted-bar-chart/ illustrates the…

soliz
- 735
- 1
- 7
- 17
0
votes
1 answer
how to start amcharts in v5 from left
hello in this example which I leave the link below you can see that the XY chart of amChart 5 is starting from left to right
and I want it to start from right to left I could find some ways on amchart v4 but in this version, since it is v5, I…

Mahdi Khavari
- 31
- 3
0
votes
1 answer
How can I change Amchart5 graph on @Input() decorator data change in Angular 13
I am using amChart5 graph in a component as child component with angular13 and I am sending data from parent component to child component through input decorator it working fine for first-time load but I can't change/update the chart on @Input()…

Rajdip Ghosh
- 1
- 1
0
votes
1 answer
Cannot change label from percentage to number in amchart5
I am using the new amcharts5 and I cannot seem to change my pie chart "slice" and label to a pure number despite referencing my old code and other links.
Basically my code and chart loads, but the issue is my values is depicted in percentages…

Niana
- 1,057
- 2
- 14
- 42