我發現這個codepen,使用jQuery在圖表上添加一個百分比。也許它會有幫助嗎?
http://codepen.io/sharkers/pen/qmrjVe
$(document).ready(function() {
startProdChart(); });
function startProdChart() {
google.charts.load("current", { packages: ["bar"] });
google.charts.setOnLoadCallback(drawProdChart);
}
function drawProdChart() {
//create the main array that we need to fill up
var prodChart = [];
//create the initial header array and populate with values
var header = ["Month", "Finance Reserve"]; //the static pieces
var prodDiv = $('.the-record[data-type="totals"][data-record="store totals"] .product-labels');
prodDiv.each(function() {
var prodName = $(this).find(".header-labels .record-label").text();
header.push(prodName);
});
//push header info into array
prodChart.push(header);
//collect data from each monthly record
var chartData = $('.the-record[data-record="store totals"][data-type="totals"] .record-column span[data-label="income"]');
chartData.each(function() {
var tempProd = [];
var chartDate = $(this).parent().data("date"),
chartXLabels = $(this)
.closest(".vehicle-labels")
.find('.header-labels .record-label[data-date="' + chartDate + '"]')
.text(),
chartDataTotalIncome = parseInt($(this).text().replace(/\$|,/g, "")),
chartFinanceTotal = parseInt(
$(this)
.closest(".record-holder")
.find(
'.finance-labels .record-column[data-date="' +
chartDate +
'"] span[data-label="financeamt"]'
)
.text()
.replace(/\$|,/g, "")
),
chartFinancePerc = chartFinanceTotal/chartDataTotalIncome,
chartProducts = $(this)
.closest(".record-holder")
.find(
'.product-labels .record-column[data-date="' + chartDate + '"] span.amt'
);
//if untitled, label 'Averages'
if (chartXLabels == "") {
chartXLabels = "Average";
}
//push labels and finance numbers in array
tempProd.push(chartXLabels);
tempProd.push(chartFinanceTotal);
//push product totals into array one by one
chartProducts.each(function() {
var chartProductsTotal = parseInt($(this).text().replace(/\$|,/g, "")),
chartProductsPerc =
parseInt($(this).text().replace(/\$|,/g, ""))/chartDataTotalIncome;
tempProd.push(chartProductsTotal);
});
prodChart.push(tempProd);
});
var data = google.visualization.arrayToDataTable(prodChart);
//set chart options
var options = {
chart: {
title: "Total Income Percentage",
subtitle: "Products and Finance Reserve"
},
bars: "vertical",
vAxis: {
format: "$#,###",
textPosition: "inside"
},
height: 700,
series: {
0: {
color: "#3eb42f"
},
1: {
color: "#2264ae"
}
},
isStacked: "true"
};
var chart = new google.charts.Bar(
document.getElementById("monthly-income-chart")
);
chart.draw(data, google.charts.Bar.convertOptions(options));
google.visualization.events.addListener(chart, "ready", drawMoInc); //run the addPercs function after chart ready
function drawMoInc() {
addPercs("monthly-income-chart");
}
}
//this is a function that will add percentages within the sections of a stacked bar chart
功能addPercs(chartId){// 谷歌材料圖表具有兩個元件組成一個杆,有可能幾個 '矩形' 元素和一種'路徑',因此我們使用路徑來獲取條數 var thisChart = $(「#」+ chartId), gLast = thisChart.find(「svg g:last」),//最後一個g是工具提示的位置出現,需要插入我們的新文本在此元素之前 barPath = thisChart.find(「svg g:eq(2)path」),//第三個g元素是路徑所在的位置 pathAmt = barPath.length,//路徑的數量將會告訴我們在圖表中有多少條槓桿 barRect = thisChart.find(「svg g:eq(2)rect」),//第三個g元素是rects所在的位置 rectAmt = barRect。長度, rectGroup = rectAmt/pathAmt,//找出在一個條中有多少個正切部分 rectSelect = 0;
console.log(thisChart.attr("id"));
//create an empty 'g' element, append to the 'svg' element, give it a class, shift it up one so it's second to last
var newTextSvg = document.createElementNS("http://www.w3.org/2000/svg", "g");
thisChart.find("svg").append(newTextSvg);
newTextSvg.setAttribute("class", "newtext");
thisChart.find(".newtext").insertBefore(gLast);
//get the parts of the bar and create percentages
barPath.each(function() {
var totalRectHeight = 0,
thisGroup = rectSelect * rectGroup,
thisSet = rectSelect * rectGroup;
//get total height of all rects in a single bar
for (i = 0; i < rectGroup; i++) {
var thisRectHeight = barRect[thisGroup].getBBox().height;
totalRectHeight = thisRectHeight + totalRectHeight;
thisGroup++;
}
//get path info
var pathHeight = barPath[rectSelect].getBBox().height,
pathWidth = barPath[rectSelect].getBBox().width,
pathPosX = barPath[rectSelect].getBBox().x,
pathPosY = barPath[rectSelect].getBBox().y;
//do some math real quick like
var totalHeight = pathHeight + totalRectHeight,
pathPerc = Math.round(pathHeight/totalHeight * 100);
//get all the rect info within the bar
for (i = 0; i < rectGroup; i++) {
var rectHeight = barRect[thisSet].getBBox().height,
rectWidth = barRect[thisSet].getBBox().width,
rectPosX = barRect[thisSet].getBBox().x,
rectPosY = barRect[thisSet].getBBox().y,
rectPerc = Math.round(rectHeight/totalHeight * 100),
rectText = document.createTextNode(rectPerc + "%");
//create new svg text elements for the rect parts of the chart
if (rectHeight !== 0) {
var newRectText = document.createElementNS(
"http://www.w3.org/2000/svg",
"text"
);
newRectText.appendChild(rectText);
newTextSvg.appendChild(newRectText);
newRectText.setAttribute("x", rectPosX);
newRectText.setAttribute("y", rectPosY);
newRectText.setAttribute(
"style",
"cursor: default; user-select: none; -webkit-font-smoothing: antialiased;"
);
newRectText.setAttribute("fill", "#ffffff");
var rectTextWidth = newRectText.getBBox().width,
rectTextHeight = newRectText.getBBox().height,
rectOffsetX = rectWidth/2 - rectTextWidth/2,
rectOffsetY = 24;
if (rectTextHeight + rectOffsetY * 2 >= rectHeight) {
rectOffsetY = rectHeight/2 + rectTextHeight/3.5;
}
newRectText.setAttribute("dx", rectOffsetX);
newRectText.setAttribute("dy", rectOffsetY);
}
thisSet++;
}
//path vars
var pathText = document.createTextNode(pathPerc + "%");
//create a new svg text element for the path parts of the chart
var newPathText = document.createElementNS(
"http://www.w3.org/2000/svg",
"text"
);
newPathText.appendChild(pathText);
newTextSvg.appendChild(newPathText);
newPathText.setAttribute("x", pathPosX);
newPathText.setAttribute("y", pathPosY);
newPathText.setAttribute(
"style",
"cursor: default; user-select: none; -webkit-font-smoothing: antialiased;"
);
newPathText.setAttribute("fill", "#ffffff");
//get numbers to set the text position
var pathTextWidth = newPathText.getBBox().width,
pathTextHeight = newPathText.getBBox().height,
pathOffsetX = pathWidth/2 - pathTextWidth/2,
pathOffsetY = 24;
if (pathTextHeight + pathOffsetY * 2 >= pathHeight) {
pathOffsetY = pathHeight/2 + pathTextHeight/3.5;
}
newPathText.setAttribute("dx", pathOffsetX);
newPathText.setAttribute("dy", pathOffsetY);
rectSelect++; //go up one
});
}
見[中不工作的功能列表](https://github.com/google/google-visualization-issues/issues/2143)在_Material_圖,它包括大部分你需要的東西。如果您使用 - >'google.charts.Bar.convertOptions(選項)' – WhiteHat