0

我有这张图表,看看日期!都有在一起。

我想要这些

在此处输入图像描述

我的 php 或 HTML 中没有 CSS

我使用代码来创建图表

function drawCountShopsByCategory(datos) {
    var options5 = {
        is3D : 'true',
        width : 900,
        height : 600
    };
    var chart5 = new google.visualization.ColumnChart(document.getElementById('CountShopsByCategory'));
    chart5.draw(new google.visualization.DataTable(datos), options5);
}

谢谢!

4

1 回答 1

0
function drawCountShopsByCategory(datos) {
    var options5 = {
        title : 'Cantidad de comercios por categorías',
        is3D : 'true',
        width : 900,
        hAxis: {textPosition: 'out', showTextEvery: 1, slantedText: true, textStyle: { color: '', fontSize: 15 } },
        height :600
    };
    var chart5 = new google.visualization.ColumnChart(document.getElementById('CountShopsByCategory'));
    chart5.draw(new google.visualization.DataTable(datos), options5);
}

在选项中添加这一行!

hAxis: {textPosition: 'out', showTextEvery: 1, slantedText: true, textStyle: { color: '', fontSize: 15 } }

于 2013-11-03T13:12:30.603 回答