Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
Удаленная работа для IT-специалистов
Но я не особо понял.
function(){
var charts;
var chartDatas = [
{
"country": "Chrome",
"visits": 40.5
},
{
"country": "Firefox",
"visits": 30.1
},
{
"country": "Explorer",
"visits": 17.9
},
{
"country": "Другие",
"visits": 11.5
},
];
AmCharts.ready(function () {
// PIE CHART
charts = new AmCharts.AmPieChart();
// title of the chart
// chart.addTitle("Visitors countries", 16);
charts.dataProvider = chartDatas;
charts.titleField = "country";
charts.valueField = "visits";
charts.sequencedAnimation = true;
charts.startEffect = "elastic";
charts.innerRadius = "30%";
charts.startDuration = 2;
charts.labelRadius = 15;
charts.balloonText = "[[title]]
[[value]] ([[percents]]%)";
// the following two lines makes the chart 3D
charts.depth3D = 10;
charts.angle = 15;
// WRITE
charts.write("pochta");
});
}
А дальше??? У меня не получилось!