plotLines

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 path="yAxis.plotLines[0].color"></highcharts-control>
      <highcharts-control path="yAxis.plotLines[0].value"></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

// Sample data for the chart
const data = [29.9, 71.5, 106.4, 129.2, 144.0, 176.0, 135.6, 148.5, 216.4, 194.1];

const chart = Highcharts.chart('container', {
    title: {
        text: 'Initial Title'
    },
    xAxis: {
        categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct']
    },
    yAxis: {
        plotLines: [{
            value: 120,
            color: 'red',
        }]
    },
    series: [{
        data: data
    }]
});

chart.update({
    yAxis: {
        plotLines: [{
            value: 75, //remove this and line is removed
            color: 'blue',
        }]
    }
});