Closed rodrigosobrero closed 4 years ago
+1
Thanks for your question. lineOptions
is supported and can be passed directly to the component:
<script>
import Chart from 'svelte-frappe-charts';
const data = {
/* data goes here */
};
const lineOptions = {
regionFill: 1
};
</script>
<Chart data={data} lineOptions={lineOptions} />
How to set options like
lineOptions
?