How to initialize stepline chart with a vertical line? #3629
Unanswered
viniciusrufop
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
How to initialize stepline chart with a vertical line, similar to the red line in the image?
`
<apx-chart
[series]="chartOptions.series"
[chart]="chartOptions.chart"
[markers]="chartOptions.markers"
[stroke]="chartOptions.stroke"
[dataLabels]="chartOptions.dataLabels"
[title]="chartOptions.title"
`
this.chartOptions = { series: [ { name: "stepline-series", data: [10, 17, 20, 39, 42] } ], chart: { type: "line", height: 350 }, stroke: { curve: "stepline" }, dataLabels: { enabled: false }, title: { text: "Stepline Chart", align: "left" }, markers: { hover: { sizeOffset: 4 } } };
Beta Was this translation helpful? Give feedback.
All reactions