1
0
Fork 0
mirror of synced 2024-07-07 07:15:43 +12:00

WIP: Work so far

This commit is contained in:
cmack 2020-07-20 16:25:50 +01:00
parent 96d80cf30d
commit cae50603ae
13 changed files with 20 additions and 0 deletions

View file

@ -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} />