I have a bar with several colors that looks like this
The code I used:
$(document).ready(function(){ var line1 = [['Kliks', 119],['Unieke kliks', 91],['Afgemeld', 12]]; $('#chart3').jqplot([line1], { seriesColors:['#74b6e7', '#003246', '#e22a20'], pointLabels:{show:true, stackedValue: true}, seriesDefaults:{ renderer:$.jqplot.BarRenderer, rendererOptions: { varyBarColor: true } }, series:[ {pointLabels:{ show: true, labels:['119', '91', '12'] }}], axes:{ xaxis:{ renderer: $.jqplot.CategoryAxisRenderer } } }); });
I would like to display the values โโof the points of the bar so that the chart looks like this:
Is it possible? I tried with pointLabels but they did not display
series:[ {pointLabels:{ show: true, labels:['119', '91', '12'] }}],
source share