WIP: Work so far
This commit is contained in:
parent
96d80cf30d
commit
cae50603ae
|
@ -0,0 +1,20 @@
|
||||||
|
<script>
|
||||||
|
import { colors } from "britecharts"
|
||||||
|
import Chart, { colorSchemas } from "./Chart"
|
||||||
|
|
||||||
|
let type = "donut"
|
||||||
|
|
||||||
|
export let colorSchema = colorSchemas.britecharts
|
||||||
|
export let height = 200
|
||||||
|
export let width = 200
|
||||||
|
export let margin = { top: 0, right: 0, bottom: 0, left: 0 }
|
||||||
|
|
||||||
|
export let externalRadius = 25
|
||||||
|
export let hasFixedHighlightedSlice = false
|
||||||
|
export let hasLastHoverSliceHighlighted = false
|
||||||
|
export let internalRadius = 25
|
||||||
|
export let isAnimated = true
|
||||||
|
export let radiusHoverOffset = 0
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<Chart {type} {...$$props} />
|
Loading…
Reference in New Issue