I am using the highcharts library to draw the graph. But I want to use the custom markers instead of predefined markers like(circle, rectangle etc). I am working in react and using the wrapper of high chart library.
series: [{
name: 'symbol name',
data: [29.9, 71.5, 106.4, ],
marker: {
symbol: url('image url here');
}
}
when I mention the image URL then it loads the image from the network. But I want to load the image of maker from the hard disk, not from internet how can I do this.