Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

When I select a legend item my input is hidden from a highcharts-container class with id = highcharts-2:

<input type="hidden" id="Chart1_legend" name="Chart1_legend" value="[{&quot;value&quot;:true,&quot;name&quot;:&quot;1&quot;}]">

Anyway to default in this attribute? Was trying this:

    $(document).ready(function() {
  $(#Chart1).highcharts().series[1].update({
    showInLegend: false
  });
})

Chart with all elements shown:

All elements shown

Chart with the first element hidden:

First element hidden after legend selection

Include script to log two console entries of Highcharts.charts

Two console logs up top from script and manual concole entry of Highcharts.charts1 appended on bottom

question from:https://stackoverflow.com/questions/65713124/trying-to-default-a-legend-value-as-hidden-using-logi-info

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
1.1k views
Welcome To Ask or Share your Answers For Others

1 Answer

You need to disable the visible property in the first series object:

    series: [{
        visible: false,
        ...
    }, ...]

Live demo: http://jsfiddle.net/BlackLabel/w10a8tos/

API Reference: https://api.highcharts.com/highcharts/series.column.visible


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...