Reputation: 5127
We are working with amCharts. By using serial chart with columns, I want to set different colors for the highest and lowest values.
Somebody knows how is it possible?
Upvotes: 1
Views: 1196
Reputation: 5127
In time I found the solution in the documentation. We can do that by adding a field in the dataProvider
, e.g. columnColor
with value and setting the colorField
of the graph
to 'columnColor'
(we also have the possibility to set the lineColorField
).
UPDATE:
working fiddle
Upvotes: 2