1
我正在處理angularjs谷歌圖表。我想定製工具提示。 在我的提示我要顯示的多個系列的數據以及一些文本顯示在演示https://plnkr.co/edit/orQchHKMeErVesXW2M0u?p=preview 我想看看傳說和工具提示中顯示的值旁邊的值的標題所示https://plnkr.co/edit/6iw39IRFY7mwdQzjAVR6?p=preview工具提示未按預期顯示時定製
在上述plunker中,我沒有自定義工具提示,所以它按預期工作,但是當我在工具提示中自定義文本時,如第一次plunker鏈接所示(1 - 7月替換爲第一系列...),工具提示不是如預期所示。 有何建議?
JS代碼:
'use strict';
angular.module('google-chart-example', ['googlechart']).controller("MainCtrl", function ($scope) {
var createChart = function (rows, label) {
return {
"type": "ColumnChart",
"data": {
"cols": [
{"id": label, "label": label, "type": "string"},toolTipVar,
{"id": "count", "label": "count", "type": "number"},
{"id": "pizza", "label": "Pizza", "type": "number"},
{"id": "softdrink", "label": "Softdrink", "type": "number"}
],
"rows": rows
},
"options": {
"title": label,
"isStacked": "true",
focusTarget: 'category',
// "displayExactValues": true
"tooltip": {'text' : 'value' },
}
}
};
var toolTipVar = {
role: "tooltip",
type: "string",
p: {
'html': true
}
};
var data = [
{"c":[{"v":"First Series"},{"v":"Jan - July" + "\n" + "63" + "\n" + "30" + "\n" + "33"},{"v":63},{"v":"30"},{"v":"33"}]},
{"c":[{"v":"Second series"},{"v":"Aug - Sept" + "\n" + "70" + "\n" + "35" + "\n" + "35"},{"v":70},{"v":"35"},{"v":"35"}]},
{"c":[{"v":"Third series"},{"v":"Oct - Dec" + "\n" + "80" + "\n" + "40" + "\n" + "40"},{"v":80},{"v":"40"},{"v":"40"}]}
];
$scope.myChart = createChart(data, "Data Series");
});
我能實現這個使用在我們的應用程序中,我們沒有使用loader.js – user8401182
感謝您的幫助。我在上面的代碼中看到使用DataTable。請找到我的演示https://plnkr.co/edit/orQchHKMeErVesXW2M0u?p=preview。這是我們在現有應用程序中實現的方式,不能像上面所建議的那樣引入新的js文件或DataTables。如果沒有使用DataTables(使用jsapi),我的演示程序塊中可以實現上述相同的行爲。 – user8401182
請查看更新後的鏈接https://plnkr.co/edit/XmPWWAEIrHZqls4LhBOa?p=preview。該圖表不符合預期。 – user8401182