We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e7cad9a commit 6728ff5Copy full SHA for 6728ff5
src/components/vue-ui-ridgeline.vue
@@ -760,10 +760,13 @@ defineExpose({
760
761
<!-- ZERO LINE -->
762
<path
763
+ v-if="FINAL_CONFIG.style.chart.zeroLine.show"
764
:stroke="FINAL_CONFIG.style.chart.zeroLine.useSerieColor ? dp.color : FINAL_CONFIG.style.chart.zeroLine.stroke"
765
:stroke-dasharray="FINAL_CONFIG.style.chart.zeroLine.strokeDasharray"
- :stroke-width="FINAL_CONFIG.style.chart.zeroLine.strokeWidth" :d="dp.zeroPath"
766
- stroke-linecap="round" />
+ :stroke-width="FINAL_CONFIG.style.chart.zeroLine.strokeWidth"
767
+ :d="dp.zeroPath"
768
+ stroke-linecap="round"
769
+ />
770
771
<!-- MAX POINT INDICATOR -->
772
<template v-if="FINAL_CONFIG.style.chart.areas.maxPoint.show && dp.plots.length > 1">
0 commit comments