Is it possible to add custom HTML (like a div) inside the chart area (inside the border; Highcharts Renderer doesn't seem to offer this option)? If so, how to do it?
Any help is appreciated.
Renderer should display elements in SVG / VML. If you want to add HTML tags, add them the same way you do in Highcharts - position: absolute and set the left / top values ββto place this inner container.
You will need to use the Highcharts Renderer API .
You can refer to this JSFIDDLE working demo.
It works like:
var chart = new Highcharts.Chart({ .... ..... ...... }, function(chart) { // on complete chart.renderer.text('This text is <span style="color: red">styled</span> and <a href="http://example.com">linked</a>', 150, 80) .css({ color: '#4572A7', fontSize: '16px' }) .add(); });
You can contact on this site. http://pmsipilot.imtqy.com/jquery-highchartTable-plugin/#demo
Hope this helps.
Source: https://habr.com/ru/post/1492267/More articles:With AFNetworking, how can I read the error message contained in request.responseString - iosLibrary to connect Java client to nodejs sockjs server? - javaChange user IDs to assign additional features - cPython 2: AttributeError: 'file' object does not have 'strip' attribute - pythonReplace AWK files using another file as a translation list - replacereplace dictionary-based text - linuxAccess WordPress features on a separate plugin page - phpHow to change JRE for PhpStorm on MacOs - phpstormunix shell: replace with a dictionary - shellIs dictionary replacement possible with AWK or Sed? - dictionaryAll Articles