php-mpos/public/site_assets/test/js/dist/examples/pieTest2.js
Sebastian Grewe e6ab8006d1 [FEATURE] Adding more to gauges, adding graph to dashboard
* Adding live-updates for gauges
* Adding new API calls
* Updated statistics to allow custom intervals
* Disabled caching for API calls for now
* Added new hashrate graph with auto-update

Addresses #444
2013-09-14 14:43:14 +02:00

80 lines
2.1 KiB
JavaScript

$(document).ready(function(){
$.jqplot.config.enablePlugins = true;
s1 = [['a',2], ['b',6], ['c',7], ['d',10]];
s2 = [['a', 4], ['b', 7], ['c', 6], ['d', 3]];
s3 = [['a', 2], ['b', 1], ['c', 3], ['d', 3]];
s4 = [['a', 4], ['b', 3], ['c', 2], ['d', 1]];
s5 = [1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1];
plot1 = $.jqplot('chart1', [s1], {
seriesDefaults:{
renderer:$.jqplot.PieRenderer
},
legend: {show:true}
});
plot2 = $.jqplot('chart2', [s2], {
seriesDefaults: {
renderer:$.jqplot.PieRenderer,
rendererOptions:{
sliceMargin: 4,
startAngle: -90
}
}
});
plot3 = $.jqplot('chart3', [s3], {
captureRightClick: true,
seriesDefaults:{
renderer:$.jqplot.PieRenderer,
shadow: false,
rendererOptions:{
startAngle: 90,
sliceMargin: 4,
highlightMouseDown: true
}
},
legend: {
show: true,
location: 'e',
placement: 'outside'
}
});
plot5 = $.jqplot('chart5', [s5], {
seriesDefaults:{
renderer:$.jqplot.PieRenderer
}
});
plot6 = $.jqplot('chart6', [[1,2,3,4]]);
$('#chart1').bind('jqplotDataClick',
function (ev, seriesIndex, pointIndex, data) {
$('#info1').html('series: '+seriesIndex+', point: '+pointIndex+', data: '+data);
}
);
$('#chart2').bind('jqplotDataHighlight',
function (ev, seriesIndex, pointIndex, data) {
$('#info2').html('series: '+seriesIndex+', point: '+pointIndex+', data: '+data);
}
);
$('#chart2').bind('jqplotDataUnhighlight',
function (ev) {
$('#info2').html('Nothing');
}
);
$('#chart3').bind('jqplotDataRightClick',
function (ev, seriesIndex, pointIndex, data) {
$('#info3').html('series: '+seriesIndex+', point: '+pointIndex+', data: '+data);
}
);
$(document).unload(function() {$('*').unbind(); });
});