ArticleZip > Highcharts Hide Series Name From The Legend

Highcharts Hide Series Name From The Legend

Highcharts is a powerful tool for visualizing data in interactive charts, making it a popular choice for web developers and data analysts. When working with Highcharts, you may encounter situations where you need to hide the series name from the legend. This can be useful for various reasons, such as when the series name is already displayed elsewhere on the chart or when you want to declutter the legend for a cleaner look.

To hide the series name from the legend in Highcharts, you can utilize the `showInLegend` property within the configuration of each series. By default, this property is set to `true`, which displays the series name in the legend. To hide the series name, you simply need to set `showInLegend` to `false`.

Here's an example of how you can achieve this:

Javascript

Highcharts.chart('container', {
    series: [{
        name: 'Series Name',
        data: [1, 2, 3, 4, 5],
        showInLegend: false // Hide series name from legend
    }]
});

In this code snippet, we have a simple Highcharts chart with one series named "Series Name". By setting `showInLegend` to `false` for this series, the series name will no longer appear in the legend.

It's important to note that you need to set `showInLegend: false` at the series level for each series that you want to hide from the legend. If you have multiple series in your chart and want to hide the series names for all of them, you will need to apply this configuration to each series object.

By customizing the `showInLegend` property for each series, you have the flexibility to control which series names are displayed in the legend and which ones are hidden. This can help you tailor the appearance of your Highcharts charts to better suit your design and data presentation needs.

Additionally, if you want to further customize the appearance of the legend, you can explore other configuration options provided by Highcharts, such as adjusting the layout, alignment, styling, and behavior of the legend.

In conclusion, hiding the series name from the legend in Highcharts is straightforward and can be done by setting the `showInLegend` property to `false` for the desired series. This simple adjustment gives you more control over how your chart is presented to viewers and allows you to create clean and informative data visualizations.