Is there a way to use a custom icon (preferably from an icon font like Awseome Fonts) for the notes on a chart ?
Below the generic code we use for creating a note, so we would want to change the icon type to be a custom shape/icon/svg instead of one of the four predefined options of "square", "cross", ...
If that is not an option at all, any other way of how this can be achieved ? E.g. I've seen markers on maps can be customized for example.
Attached an example of how the notes currently look in the chart, having such a limited set of icon shapes does not really work for our use case.
var
newNote =
function
(value, type, text, date, background) {
var
note = {
value: value,
color:
'#606060'
,
label: {
text: text +
': '
+ date,
visible:
false
},
icon: {
type: type
}
};
if
(background) {
note.icon.background = background;
}
return
note;
};