Weird character in front of Highcharts tooltip series names

charts, highcharts, javascript

Solution

Most probably you are using different coding than UTF-8. You can simply remove that character, by changing `pointFormat`, from:

<span style="color:{series.color}">\u25CF</span> {series.name}: <b>{point.y}</b><br/>

to:

<span style="color:{series.color}">{series.name}</span>: <b>{point.y}</b><br/>

Or, as just `@Adam Goodwin` pointed out, set default format in your options:

<span style="color:{series.color}">\u25CF</span> {series.name}: <b>{point.y}</b><br/>

Problem

I have a Highcharts chart which is, for some reason, showing odd characters before the series title only on the data point pop up. I am using the default popup and highcharts 4.0.1. I currently set all series to have the title `hi` to ensure nothing in my code was messing this up. Also if I output `countsGraph.series[0].name` I also get `hi`. What is causing this? Unfortunately I cannot make a fiddle at the moment as my access to HighCharts.com is playing up. Here is how I create the series ``` // Create new series if requried if (!series[c]) { series[c] = { name: "hi", data: [] }; } ```

Original source