react-chartjs icon indicating copy to clipboard operation
react-chartjs copied to clipboard

Help with CDN

Open dkati opened this issue 6 years ago • 1 comments

good evening people.i am trying to use the cdn way (script link) and show a Pie chart but i cant

i dont use "require" commands neither "import"

thanks a lot

i tryed that : https://stackoverflow.com/questions/40716800/using-library-without-require-when-using-cdn but i got that error: TypeError: (new Chart(...))[chartType] is not a function

My code: var PieChart = window['react-chartjs'].Pie;

and at render() i got :

 <PieChart>
      data={mydata}
  </PieChart>

dkati avatar Mar 20 '18 13:03 dkati

your render is wrong try this

  render: function() {
    return <PieChart data={{
      labels: ["A", "B", "C"],
      datasets: [{ data: [1, 2, 3] }, { data: [9, 8, 7] }]
    }} options={{}} width="600" height="250"/>
  }

agent3bood avatar Nov 12 '18 14:11 agent3bood