-
Notifications
You must be signed in to change notification settings - Fork 17
Open
Labels
Status: More info neededMore information is required before this can be worked onMore information is required before this can be worked onType: BugIssue / bugIssue / bug
Description
<script>
import Chart from "svelte-frappe-charts";
let data = {
labels: ["Sun", "Mon", "Tues", "Wed", "Thurs", "Fri", "Sat"],
datasets: [
{
values: [10, 12, 3, 9, 8, 15, 9],
},
],
};
let axisOptions = {
xIsSeries: true, // default: false
};
let lineOptions = {
hideDots: 1, // default: 0
spline: 1,
};
</script>
<Chart {data} type="line" colors={["red"]} axisOptions={axisOptions} lineOptions={lineOptions} />``
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
Status: More info neededMore information is required before this can be worked onMore information is required before this can be worked onType: BugIssue / bugIssue / bug