如何将标题置于Google Charts API(非Google图表图片)的折线图中心
我没有看到像titlePosition这样的选项:'center'
谢谢!
function drawVisualization() {
// Create and populate the data table.
var data = google.visualization.arrayToDataTable([
['xValues', 'yValues'],
[0, 34.92],
[389, 39.44],
[488, 52.11],
[652, 55.4]
]);
var options = {
curveType: 'none', // 'function'
title: 'Title',
titleTextStyle: {
color: '333333',
fontName: 'Arial',
fontSize: 10
},
legend: 'none',
enableInteractivity: false
};
var chart = new google.visualization.LineChart(document.getElementById('visualization'));
chart.draw(data, options);
}
答案 0 :(得分:20)
the API不提供此选项;你根本做不到这一点。
答案 1 :(得分:10)
我用: titlePosition:'none'
使用普通HTML插入标题
答案 2 :(得分:4)
Another answer建议如下:
$("text:contains(" + vencOptions.title + ")").attr({'x':'60', 'y':'20'})
答案 3 :(得分:2)
绘制图表后,调用事件处理函数:
google.visualization.events.addListener(chart, 'ready', Title_center);
将函数定义为:
function Title_center(){
var title_chart=$("#payer_chart_div svg g").find('text').html();
$("#payer_chart_div svg").find('g:first').html('<text text-anchor="start" x="500" y="141" font-family="Arial" font-size="18" font-weight="bold" stroke="none" stroke-width="0" fill="#000000">'+title_chart+'</text>');
}
只需插入图表标题,然后添加属性X:500
,y:141
。
答案 4 :(得分:1)
您可以使用绘制后的图表中的回调信息以及对div中的某些文本进行一些数学处理来轻松完成此操作。
将您的图表包含在某个位置:相对div。在图表下添加一个div,并将它和图表放在绝对位置。
然后你可以移动div的顶部&amp;留下一些高中数学的职位。
<https://jsfiddle.net/o6zmbLvk/2/>
答案 5 :(得分:0)
$("#YOUR_GRAPH_WRAPPER svg text").first()
.attr("x", (($("#time-series-graph svg").width() - $("#YOUR_GRAPH_WRAPPER svg text").first().width()) / 2).toFixed(0));
答案 6 :(得分:0)
$("text:contains(" + vencOptions.title + ")").attr({'x':'60', 'y':'20'})
// OR
$("#YOUR_GRAPH_WRAPPER svg text").first().attr("x", (($("#time-series-graph svg").width() - parseInt($("#YOUR_GRAPH_WRAPPER svg text").first().attr('x'),10)) / 2).toFixed(0));
答案 7 :(得分:0)
在图表中心显示图表标题,使用下面的代码片段;它会在图表容器的中心动态设置标题。
添加ready
事件监听器; google.visualization.events.addListener(myChart, 'ready', titleCenter);
并添加函数titleCenter
。
google.charts.load('current', {packages: ['corechart', 'bar']});
google.charts.setOnLoadCallback(drawAxisTickColors);
var options = {
title: "Chart Title",
titleTextStyle: {
bold: true,
italic: true,
fontSize: 18,
},
width: 600,
height: 400,
legend: { position: 'top', maxLines: 3 },
bar: { groupWidth: '75%' },
isStacked: true,
};
function drawAxisTickColors() {
var data = google.visualization.arrayToDataTable([
['Genre', 'Fantasy & Sci Fi', 'Romance', 'Mystery/Crime', 'General',
'Western', 'Literature', { role: 'annotation' } ],
['2010', 10, 24, 20, 32, 18, 5, ''],
['2020', 16, 22, 23, 30, 16, 9, ''],
['2030', 28, 19, 29, 30, 12, 13, '']
]);
var myChart = new google.visualization.ColumnChart(document.getElementById('chart_div'));
google.visualization.events.addListener(myChart, 'ready', titleCenter);
myChart.draw(data, options);
}
function titleCenter() {
var $container = $('#chart_div');
var svgWidth = $container.find('svg').width();
var $titleElem = $container.find("text:contains(" + options.title + ")");
var titleWidth = $titleElem.html().length * ($titleElem.attr('font-size')/2);
var xAxisAlign = (svgWidth - titleWidth)/2;
$titleElem.attr('x', xAxisAlign);
}
&#13;
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script type="text/javascript" src="https://www.gstatic.com/charts/loader.js"></script>
<div id="chart_div"></div>
&#13;
答案 8 :(得分:0)
function Title_center(total) {
var title_chart = $("#chart svg g").find('text').html();
var x = $("#chart svg g").find('rect').attr('width');
var y = $("#chart svg g").find('rect').attr('y');
alert(x);
$("#chart svg").find('g:first')
.html('<text text-anchor="start" x="'+x/2+'" y="'+y+'" font-family="Arial" font-size="12" font-weight="bold" stroke="none" stroke-width="0" fill="#000000">' + total + '</text>');
}
在脚本中创建此功能,并在图表绘制后调用,如下所示:
google.visualization.events.addListener(chart, 'ready', Title_center("Test success"));
答案 9 :(得分:0)
如先前的回答所述,您无法配置居中标题。只是不要设置任何“标题”配置。默认情况下,它将不会显示。
然后您可以使用HTML和一些代码来设置标题:
<div>
<div style="text-align: center;">Some Centered Title</div>
<div id="chart_container">
<!-- THE CHART GOES HERE -->
</div>
</div>
答案 10 :(得分:0)
所有这些都在1个CSS类和4行JavaScript中。
答案 11 :(得分:-1)
document.getElementById(&#39; divid&#39;)。getElementsByTagName(&#39; text&#39;)[0] .setAttribute(&#39; x&#39;,&#39; 350&#39; ;)
答案 12 :(得分:-2)
svg > g:first-of-type > text {
transform: translateX(calc(50% - 150px));
}