UNPKG

ember-google-charts

Version:
22 lines (18 loc) 518 B
import { warn } from '@ember/debug'; import renderChart from 'ember-google-charts/utils/render-chart'; export default function renderMaterialChart(data, options) { warn(`renderMaterialChart() has been deprecated. Use renderChart() instead. See https://github.com/sir-dunxalot/ember-google-charts#custom-charts`, { id: 'ember-google-charts.unified-render-util', }); const { design, element, type, } = this; return renderChart(element, { data, design, options, type, }); }