Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>Apparently you can achieve this through highchart api. You can specify a marker for each data point. <a href="http://api.highcharts.com/highcharts#series.data.marker" rel="nofollow noreferrer">http://api.highcharts.com/highcharts#series.data.marker</a></p> <p>Increasing the radius of the marker of first point:</p> <pre><code>series: [{ name: 'Allocated Budget', data: [{ name: 'Point 1', color: '#00FF00', y: 43000, marker: { radius: 8 } }, 19000, 60000, 35000, 17000, 10000], pointPlacement: 'on' } </code></pre> <p>And you can change the style of each xaxis label through label property of the xAxis. I found the answer from the following post. <a href="https://stackoverflow.com/questions/11182681/highchart-change-color-of-one-x-axis-label-only">Highchart - change color of one x-axis label only</a></p> <p>Changing the font-size of 'Marketing' point</p> <pre><code>xAxis: { categories: ['Sales', 'Marketing', 'Development', 'Customer Support', 'Information Technology', 'Administration'], tickmarkPlacement: 'on', lineWidth: 0, labels: { formatter: function () { if ('Marketing' === this.value) { return '&lt;span style="fill: red;"&gt;' + this.value + '&lt;/span&gt;'; } else { return this.value; } } } } </code></pre> <p><a href="http://jsfiddle.net/H8Ffq/28/" rel="nofollow noreferrer" title="Demo">Demo</a></p> <p>You can modify the tooltip according to your needs (which pops on mouse hover on points). Just take a look at the example on highchart api:</p> <pre><code>tooltip: { formatter: function() { return 'The value for &lt;b&gt;'+ this.x + '&lt;/b&gt; is &lt;b&gt;'+ this.y +'&lt;/b&gt;'; } } </code></pre> <p><a href="http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/tooltip/formatter-simple/" rel="nofollow noreferrer">http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/tooltip/formatter-simple/</a></p> <p>For changing the hover style of marker just take a look at marker object of data series. Here is an example of where the marker point doesn't change on hover too:</p> <p>The example from highchart api (Same radius for each point):</p> <p><a href="http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-states-hover-radius/" rel="nofollow noreferrer">http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-states-hover-radius/</a></p> <p>Keeping the size of marker radius on a single on point during a hover example:</p> <pre><code>data: [{ name: 'Point 1', color: '#00FF00', y: 43000, marker: { radius: 8, states: { hover: { radius: 8 } } } }, 19000, 60000, 35000, 17000, 10000] </code></pre> <p>If I were you I would dig deep into highchart api, it is a great library which provides almost any kind of functinonality that you would need in modifying charts.</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. 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