Back to amCharts.com

Making the line chart to display columns

A lot of users are asking, whether Column & Bar chart supports two Y axes and scrolling. The answer is no, however you shouldn't disappoint.

Making the line chart to display columns instead of lines is simple:

  1. set <vertical_lines>true</vertical_lines> in your graph's settings;
  2. set <line_alpha>0</line_alpha> in your graph's settings;
  3. adjust column width and some other options in <vertical_lines> section.
<vertical_lines>
  <width></width> 
  <alpha></alpha> 
  <clustered></clustered>   
  <mask></mask>        
</vertical_lines>
Back to top