Chartjs-How do you disable tooltips in ember-cli-chart?

0👍

The documentation for ember-cli-chart shows this example usage:

{{ember-chart
  type=CHARTTYPE
  data=CHARTDATA
  options=CHARTOPTIONS
  width=CHARTWIDTH
  height=CHARTHEIGHT
  plugins=CHARTPLUGINS
  customLegendElement=CUSTOMLEGENDELEMENT
}}

You need to define options as a separate property that’s passed in when invoking the chart component.

Leave a comment