Highcharts DataLabel форматер, чтобы показать только те значения, которые не нулевые не работает
У меня есть этот,
data.dataLabels = { formatter : function(){ if( this.point.y != 0 ){ return this.point.y; } } };
chart = new Highcharts.Chart(data);
это предложено в этом вопросе, и я попробовал его, используя то, что я положил выше, но он не работал, он все еще показывает значения, которые равны 0. Любая помощь? Заранее спасибо.
РЕДАКТИРОВАТЬ:
мой настоящий код выглядит так,
jQuery.ajax({
url:"charts/bar_chart.php",
dataType: "json",
cache: false,
data:{"tid":"<?php print $q4tid ?>"}
}).done(
function(data) {
data.chart["renderTo"] = "q4chart";
<?php if($q4title!="") { ?>
data.title["text"] = "<?php print $q4title ?>";
<?php } ?>
//calculate approximate heigt of chart. this is needed because
//highchart calcluate chart height based on offset height.
var ah = data.xAxis.categories.length * (data.series.length*15);
jQuery("#q4chart").css("height", ah+"px");
data.dataLabels = { formatter : function(){ if( this.point.y != 0 ){ return this.point.y; } } };
chart = new Highcharts.Chart(data);
//resize parent frame
resizeFrame();
}
).fail(
function(jqXHR, textStatus, errorThrown) {
jQuery("#q4chart").html("Error loading Q4 chart, please contact administrator.<br />" + errorThrown);
//alert("Error loading Q4 Bar chart:" + errorThrown);
}
);