Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>It can be done using Highcharts.<br></p> <p>To <strong>format the markers</strong> use the following code.</p> <pre><code>plotOptions: { // means all series types, you can change it according to the serie type series: { marker: { radius: 8, fillColor: '#FFFFFF', lineWidth: 2, lineColor: null } } } </code></pre> <p><a href="http://jsfiddle.net/VnVAR/" rel="nofollow"><strong>demo</strong></a> <a href="http://api.highcharts.com/highstock#plotOptions.series.marker.lineColor" rel="nofollow">reference</a></p> <p>Then to <strong>add the point value inside the marker</strong>.<br> I'll use the previous code, as example.<br> By default, <code>dataLabels</code> are disabled, so you have to <code>enable</code> and then set it's <code>y</code> position.</p> <pre><code>plotOptions: { // means all series types, you can change it according to the serie type series: { marker: { radius: 12, fillColor: '#FFFFFF', lineWidth: 2, lineColor: null }, dataLabels: { enabled: true, y: 13, // default formatter formatter: function() { return this.y; } } } } </code></pre> <p>I changed the radius value because it's too small to put a number inside, you can use <code>formatter</code> to format it's number.<br> <a href="http://jsfiddle.net/VnVAR/1/" rel="nofollow"><strong>demo</strong></a></p> <p>Then you have to <strong>style xAxys labels</strong>.<br></p> <pre><code>xAxis: { labels: { style: { color: 'orange', fontWeight: 'bold', 'font-size': '20px' } } } </code></pre> <p>And <a href="http://jsfiddle.net/VnVAR/2/" rel="nofollow"><strong>here</strong></a> is the result.<br> Of course it's not perfect. But it can be, I was just trying to show you that's <strong>it's possible to do it using Highcharts</strong> and you have a <strong>lot of options</strong> and a good <a href="http://api.highcharts.com/highstock#plotOptions.series.dataLabels.formatter" rel="nofollow"><strong>reference</strong></a> that can help you.</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload