QingWei-Li / laue

🖖📈 Modern charts for Vue 2.0
https://laue.js.org
MIT License
262 stars 34 forks source link

la-x-axis and la-y-axis not showing #21

Open maverickchangithub opened 5 years ago

maverickchangithub commented 5 years ago

i just copied your sample code to my project , chart is ok , but x and y axis and tooltip not showing .

Aspedm commented 4 years ago

I have same problem. I could not find a solution how to fix, but it solved. May be this helpful for someone. If you use on demand import, you mast import import { Cartesian, Line, XAxis, YAxis, Tooltip } from 'laue';

hkeidesen commented 2 years ago

And also remember to register it properly: import { Cartesian, Line, XAxis, YAxis } from 'laue'; ... components: { LaLine: Line, LaCartesian: Cartesian, LaXAxis: XAxis, LaYAxis: YAxis, },