响应饼图与fusioncharts

时间:2014-06-26 03:43:30

标签: javascript php responsive-design fusioncharts

我想让我的fusionchart饼图响应,所以我在这里遵循一些指南: http://docs.fusioncharts.com/charts/contents/FirstChart/ChangeSize.html 我按照“图表的动态调整大小功能”部分中的说明进行操作。

但是当页面加载时,我的图表变平(没有高度)。 my chart flatten

当我调整浏览器大小时,图表大小响应成功,但我得到一个非常小的饼图 very small pie

为什么在首次加载页面时我的图表会变平? (我必须先调整浏览器的大小才能看到图表)。为什么我得到一个非常小的图表?

这是我的代码

<body style="height:100%;">
<div class="container-fluid">
    <div class="row-fluid">
        <div class="col-md-12">
            <div id="chartContainer" style="height:100%;">
                FusionCharts XT will load here!
            </div>
        </div>
    </div>
</div>

<script type="text/javascript">
    FusionCharts.ready(function(){
        var myChart = new FusionCharts({
            "type": "pie2d",
            "dataFormat": "jsonurl",
            "dataSource": "pie.json",
            "width": "100%",
            "height": "100%"
        });
        myChart.render("chartContainer");
    });
</script>

这是我的pie.json:

{
"chart":{
    "caption":"Rasio Pendapatan Aeronautika & Non-Aeronautika",
    "subCaption":"Januari-Juni 2014",
    "paletteColors":"#008ee4,#6baa01,#f8bd19,#e44a00,#33bdda",
    "bgAlpha":"0",
    "borderAlpha":"20",
    "use3DLighting":"0",
    "showShadow":"0",
    "enableSmartLabels":"0",
    "startingAngle":"0",
    "showPercentValues":"1",
    "showPercentInTooltip":"0",
    "decimals":"3"},
    "data":
    [
            {
                "label":"Non-Aeronautika",
                "value":"534.973.345.227\r",
                "link":"newchart-jsonurl-naero.json"
            },
            {
                "label":"Aeronautika",
                "value":"960.429.586.179\r",
                "link":"newchart-jsonurl-aero.json"
            }
    ]

}

你可以指出我的错误吗?

感谢您的关注,我们非常感谢您的帮助。

2 个答案:

答案 0 :(得分:2)

使用AngularJS和Bootstrap。

在我的HTML中,我改变了宽度=&#34; 300&#34; to width =&#34; 100%&#34; 这使我的圆环图响应:

HTML:

<div class="row" data-ng-controller="VariableInvestmentSummaryCtrl">
    <div class="col-md-4">
        <div fusioncharts
            width="100%"
            height="300"
            type="doughnut2d"
            dataSource="{{myDataSource}}" >
        </div>
    </div>
    <div class="col-md-8 datagrid-wrapper investments"></div>
</div>

JSON:

$scope.myDataSource = {
        'chart': {
            'numberPrefix': '%',
            'theme': 'fint',
            'bgColor': '#DDDDDD',
            'bgAlpha': '0'
        },
        'data':[{
            'showLabel': '0',
            'label': 'Some Name',
            'showValue': '0',
            'value': '25'
        },
        {   
            'showLabel': '0',
            'label': 'Garden Groove harbour',
            'showValue': '0',
            'value': '50'
        },
        {   
            'showLabel': '0',
            'label': 'Los Angeles Topanga',
            'showValue': '0',
            'value': '10'
        },
        {   
            'showLabel': '0',
            'label': 'Compton-Rancho Dom',
            'showValue': '0',
            'value': '10'
        },
        {   
            'showLabel': '0',
            'label': 'Daly City Serramonte',
            'showValue': '0',
            'value': '5',
            'color': '#FE0000'
        }]
    };

答案 1 :(得分:0)

此问题是否针对任何浏览器?适用于Chrome / FireFox

请找到DropBox链接:https://dl.dropboxusercontent.com/u/44972996/pie.rar