himynameisdave / svelte-frappe-charts

📈 Svelte bindings for frappe-charts.
https://frappe.io/charts
MIT License
308 stars 16 forks source link

Why doesn't axisOptions work? #52

Open PichenNew opened 2 years ago

PichenNew commented 2 years ago

<Chart {data} type="line" colors={["red"]} axisOptions={axisOptions} lineOptions={lineOptions} />``

PichenNew commented 2 years ago

chartRef.addDataPoint("Wed", [insertdata], num); How can i add points without label?

ARYX01 commented 2 years ago

Bump, same issue. On a basic line chart with 1dataset with 100values and no labes, when adding axisOptions to it isn't working

pietz commented 1 year ago

same here. xIsSeries doesn't change anything

DaleCam commented 1 year ago

same here. xIsSeries doesn't change anything

This combination worked for me: let axisOptions = { xIsSeries: 1, xAxisMode: 'tick', };