File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 628
628
<g v-for =" (serie, i) in lineSet" :key =" `serie_line_${i}`" :class =" `serie_line_${i}`" :style =" `opacity:${selectedScale ? selectedScale === serie.groupId ? 1 : 0.2 : 1};transition:opacity 0.2s ease-in-out`" >
629
629
<path
630
630
data-cy =" datapoint-line-coating-smooth"
631
- v-if =" serie.smooth && serie.plots.length > 1"
631
+ v-if =" serie.smooth && serie.plots.length > 1 && !!serie.curve "
632
632
:d =" `M${serie.curve}`"
633
633
:stroke =" FINAL_CONFIG.chart.backgroundColor"
634
634
:stroke-width =" FINAL_CONFIG.line.strokeWidth + 1"
638
638
639
639
<path
640
640
data-cy =" datapoint-line-coating-straight"
641
- v-else-if =" serie.plots.length > 1"
641
+ v-else-if =" serie.plots.length > 1 && !!serie.straight "
642
642
:d =" `M${serie.straight}`"
643
643
:stroke =" FINAL_CONFIG.chart.backgroundColor"
644
644
:stroke-width =" FINAL_CONFIG.line.strokeWidth + 1"
688
688
689
689
<path
690
690
data-cy =" datapoint-line-smooth"
691
- v-if =" serie.smooth && serie.plots.length > 1"
691
+ v-if =" serie.smooth && serie.plots.length > 1 && !!serie.curve "
692
692
:d =" `M${serie.curve}`"
693
693
:stroke =" serie.color"
694
694
:stroke-width =" FINAL_CONFIG.line.strokeWidth"
699
699
700
700
<path
701
701
data-cy =" datapoint-line-straight"
702
- v-else-if =" serie.plots.length > 1"
702
+ v-else-if =" serie.plots.length > 1 && !!serie.straight "
703
703
:d =" `M${serie.straight}`"
704
704
:stroke =" serie.color"
705
705
:stroke-width =" FINAL_CONFIG.line.strokeWidth"
You can’t perform that action at this time.
0 commit comments