我为你做了一个小提琴:http: //jsfiddle.net/96AhK/
$(function () {
var valdt1 = 'T1'; //<%=request.getParameter("T1") %>
var valdt2 = 'T2'; //<%=request.getParameter("T2") %>
chart = new Highcharts.Chart(
{ chart: { renderTo: 'PIE',
plotBackgroundColor: null,
plotBorderWidth: null,
plotShadow: false,
type: 'pie'},
title: {
text: 'Database Status From ' + valdt1 +' To ' + valdt2,
style: {fontSize: '10px'}
},
xAxis: {
categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']
},
series: [{
data: [29.9, 71.5, 106.4, 129.2, 144.0, 176.0, 135.6, 148.5, 216.4, 194.1, 95.6, 54.4]
}]
});
});
我必须替换服务器端代码(request.getParameter)才能在 jsfiddle 中工作,但您的代码对我来说看起来很合适。当您使用变量时,通过将各个部分连接在一起来构建字符串:
text: 'Database Status From ' + valdt1 +' To ' + valdt2,