Demo of xAxis.plotLines.dashStyle
by stitot
HTML
<script src="https://code.highcharts.com/highcharts.js"></script>
<script src="https://code.highcharts.com/modules/accessibility.js"></script>
<script src="https://code.highcharts.com/themes/adaptive.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@highcharts/[email protected]" type="module"></script>
<figure class="highcharts-figure">
<div id="container"></div>
</figure>
<div class="highcharts-controls-wrapper">
<highcharts-controls>
<highcharts-group header="Update options">
<highcharts-control type="select" path="xAxis.plotLines[0].dashStyle" value="LongDashDot"></highcharts-control>
</highcharts-group>
</highcharts-controls>
</div>
CSS
* {
font-family:
-apple-system,
BlinkMacSystemFont,
"Segoe UI",
Roboto,
Helvetica,
Arial,
"Apple Color Emoji",
"Segoe UI Emoji",
"Segoe UI Symbol",
sans-serif;
}
.highcharts-figure {
max-width: 800px;
margin: 1em auto;
}
.highcharts-controls-wrapper {
max-width: 800px;
margin: 1em auto;
padding: 0 10px;
}
highcharts-controls {
display: inline-block;
}
TypeScript
Highcharts.chart('container', {
title: {
text: 'Demo of <em>xAxis.plotLines.dashStyle</em>'
},
xAxis: {
plotLines: [{
dashStyle: 'LongDashDot',
value: '2026-06-15',
width: 2
}],
type: 'datetime'
},
plotOptions: {
series: {
pointIntervalUnit: 'month',
pointStart: '2026-01-01'
}
},
series: [{
data: [
29.9, 71.5, 106.4, 129.2, 144, 176, 135.6, 148.5, 216.4, 194.1,
95.6, 54.4
]
}]
});