reactjs / react-chartjs

common react charting components using chart.js
MIT License
2.93k stars 301 forks source link

not supporting percent in width #222

Closed RZsam closed 5 years ago

RZsam commented 6 years ago

<Line width="100%" height="250" /> It's expected to set width 100% but when it rendered width is 100px. how to set width to 100% of parent's width?

agent3bood commented 5 years ago

Setting width of a canvas element is not an option (it is not a possible even in plain html) Reade more here https://www.w3schools.com/tags/att_canvas_width.asp

RZsam commented 5 years ago

@agent3bood thank you