使用无线电按钮更改数据提供者

时间:2014-11-30 12:55:27

标签: javascript html amcharts

我有这个代码。我想使用无线电按钮更改数据提供者。 我如何进行此更改,这是我的代码

        AmCharts.makeChart("chartdiv", {
            "type": "pie",
            "dataProvider": AmCharts.loadJSON('data.php'),
            if (document.getElementById("rb1").checked){
            "dataProvider": AmCharts.loadJSON('data.php'),
            }
            if (document.getElementById("rb2").checked)
            { "dataProvider": AmCharts.loadJSON('databycountry.php'),}

    </script>
</head>

<body>
<table cellspacing="20">
        <tr>
            <td>
                <input type="radio" checked="true" name="group" id="rb1" >labels outside
                <input type="radio"  name="group" id="rb2">labels inside</td>
        </tr>
    </table>
    <div id="chartdiv" align="center" style="width: 50%; align: left;height: 500px;"></div>

</body>

</html>

1 个答案:

答案 0 :(得分:1)

使用单选按钮的onclick处理程序?