我需要新的功能添加HighCharts - 添加新的動態功能
function(chart) { // on complete
chart.renderer.path(['M', 300, 0, 'L', 300, 300])
.attr({
'stroke-width': 2,
stroke: 'red'
})
.add();
chart.renderer.path(['M', 0, 150, 'L', 500, 150])
.attr({
'stroke-width': 2,
stroke: 'red'
})
.add();
}
OR
function(chart) { // on complete
var textX = chart.plotLeft + (chart.plotWidth * 0.5);
var textY = chart.plotTop + (chart.plotHeight * 0.5);
var span = '<span id="pieChartInfoText" style="position:absolute; text-align:center;">';
span += '<span style="font-size: 32px">Upper</span><br>';
span += '<span style="font-size: 16px">Lower</span>';
span += '</span>';
$("#addText").append(span);
span = $('#pieChartInfoText');
span.css('left', textX + (span.width() * -0.5));
span.css('top', textY + (span.height() * -0.5));
}
我現有圖表。這些功能是動態的。他們每次更新數據庫時都會更改。我怎樣才能做到這一點?。
我需要一個代碼,這個功能追加到現有的高圖表