There is another problem with highcharts marker size. There are 3 properties, size depends on: radius, height, width. The default values of radius is 4. I`m setting height and width of marker, which depends on some data, for example:
marker: {
height: 50,
width: 70,
symbol: 'circle'
}
The the graph is rendering. Here is, how it looks:
But after, or on hover action size changes. It returns to the default value of RADIUS, and ignoring my values of height and width:
Any ideas, how to fix it?
width
andheight
changes anything. According to the API - width/height should be available for image markers only. – Paweł Fus