We have just released new versions of all the charts in amCharts Bundle (Column & Bar, Line & Area, Pie & Donut, Scatter & Bubble, Radar & Polar charts) [Download]
Heres a scoop of what’s been added:
Column & Bar Chart
- FEATURE ADDED:
Column corner radius
Now columns can have rounded corners. Two different settings allow you specify different corner radiuses for columns top and bottom. You can also set the roundness in percents:
<column>
<corner_radius_top>100%</corner_radius_top>
<corner_radius_bottom>8</corner_radius_bottom>[Sample]
- FEATURE ADDED:
Roll-over color for the columns. Previously you could only set the roll-over
brightness. Now you can set a color to which the column will change when user rolls-over the column:
<column>
<hover_color>#CC0000</hover_color>
Scatter & Plot (XY) Chart
- FEATURE ADDED
New settings added to the <graph>:
<fill_color> – sets the fill color of the graph. Note, the fill will work differently then in Line chart – it won’t fill the area between graph and axis, but rather fill the shape of the graph.
<fill_alpha> – sets fill opacity.
<min_max> – you can tell the chart that it shouldn’t include graphs values when calculating min and max of the chart.
The settings above allows you to simulate guides, draw colored areas on your chart. Check bulls_eye example to see this in action. [Sample]
All Charts
- FEATURE ADDED
amReturnParam function also returns the param name:
amReturnParam(chart_id, value, param);