1
0
Fork 0
mirror of synced 2024-07-04 14:01:27 +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,
},
{
label: "Keep Last Hover",
key: "hasLastHoverSliceHighlighted",
label: "Animate Chart",
key: "isAnimated",
valueKey: "checked",
control: Checkbox,
},
{
label: "Is Animated",
key: "isAnimated",
label: "Keep Last Hover",
key: "hasLastHoverSliceHighlighted",
valueKey: "checked",
control: Checkbox,
},
@ -553,12 +553,6 @@ export default {
valueKey: "checked",
control: Checkbox,
},
{
label: "Show Legend",
key: "useLegend",
valueKey: "checked",
control: Checkbox,
},
{
label: "Horizontal Legend",
key: "horizontalLegend",

View file

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