HighCharts Hide Series Name from the Legend

后端 未结 5 508
耶瑟儿~
耶瑟儿~ 2021-01-31 01:19

I try to solve this problem several times and give up. Now, when I have met him again, I decided to ask for some help.

I have this code for my Legend:

lege         


        
5条回答
  •  长情又很酷
    2021-01-31 01:49

    If you don't want to show the series names in the legend you can disable them by setting showInLegend:false.

    example:

    series: [{
       showInLegend: false,             
       name: "",
       data: [],
    }]
    

    You get other options here.

    • legend options

    • other chart options

提交回复
热议问题