amcharts / amcharts3

JavaScript Charts V3
Other
395 stars 129 forks source link

Remove guide lines from amcharts #218

Open vishnug1995 opened 5 years ago

vishnug1995 commented 5 years ago

is any way to remove added guides from amcharts .

xorspark commented 5 years ago

Are you referring to the axis grid lines?

You can hide them by setting the corresponding axis' gridAlpha to 0, e.g.

valueAxes: [{
  // ...
  gridAlpha: 0,
  // ...
}
//repeat for each value axis if applicable
],
categoryAxis: {
  // ...
  gridAlpha: 0
}

Value Axis gridAlpha Category Axis gridAlpha

Labels can also be hidden by setting labelsEnabled in each axis to false.