1
0
Fork 0
mirror of synced 2024-07-07 07:15:43 +12:00
This commit is contained in:
cmack 2020-08-05 17:05:06 +01:00
parent 2cd8d09822
commit ad75a142ea
2 changed files with 8 additions and 15 deletions

View file

@ -498,14 +498,14 @@ export default {
control: ModelSelect, control: ModelSelect,
}, },
{ {
label: "Keep Last Hover", label: "Animate Chart",
key: "hasLastHoverSliceHighlighted", key: "isAnimated",
valueKey: "checked", valueKey: "checked",
control: Checkbox, control: Checkbox,
}, },
{ {
label: "Is Animated", label: "Keep Last Hover",
key: "isAnimated", key: "hasLastHoverSliceHighlighted",
valueKey: "checked", valueKey: "checked",
control: Checkbox, control: Checkbox,
}, },
@ -553,12 +553,6 @@ export default {
valueKey: "checked", valueKey: "checked",
control: Checkbox, control: Checkbox,
}, },
{
label: "Show Legend",
key: "useLegend",
valueKey: "checked",
control: Checkbox,
},
{ {
label: "Horizontal Legend", label: "Horizontal Legend",
key: "horizontalLegend", key: "horizontalLegend",

View file

@ -47,6 +47,10 @@
legend.highlightByEntryId(highlightByEntryId) legend.highlightByEntryId(highlightByEntryId)
} }
if (notNull(isHorizontal)) {
legend.isHorizontal(isHorizontal)
}
if (notNull(margin)) { if (notNull(margin)) {
legend.margin(margin) legend.margin(margin)
} }
@ -70,11 +74,6 @@
} }
} }
$: if (notNull(isHorizontal)) {
debugger
legend.isHorizontal(isHorizontal)
}
const legendClass = `legend-container` const legendClass = `legend-container`
</script> </script>