Presently, I'm utilizing the Highcharts API here and here to customize the export button for Highcharts. I am attempting to position an ellipsis inside the export button in order to adhere to certain style guidelines. However, due to the limitations of the API options, the closest I can achieve is placing it next to the symbol.
Current settings used:
exportButton: {
text: '...',
symbolFill: 'rgb(250, 168, 0)',
symbolStroke: 'transparent',
symbol: 'circle'
},
This is the current outcome: JsFiddle
Essentially, my desired end result looks something like this:
https://i.sstatic.net/D8Mne.png
Does anyone have a method to achieve this without resorting to using an image?