Crew PHP |
|
function resize(){
var ratio = 1;// 1 is vierkant, 0.5 is langwerpig, 2 is de andere langwerpig
var procent = 0.1; // 10% afmeting van totale width
var pieWidth = document.width; // <- die weet k niet zeker
pieWidth = pieWidth * procent;
var pieHeigth = pieWidth * ratio;
function drawChart() {
//hier die hele functie
chart.draw(data, {width: pieWidth, height: pieHeigth , is3D: true, title: 'My Daily Activities'});
}
}
function resize(){ var ratio = 1;// 1 is vierkant, 0.5 is langwerpig, 2 is de andere langwerpig var procent = 0.1; // 10% afmeting van totale width var pieWidth = document.width; // <- die weet k niet zeker pieWidth = pieWidth * procent; var pieHeigth = pieWidth * ratio; function drawChart() { //hier die hele functie chart.draw(data, {width: pieWidth, height: pieHeigth , is3D: true, title: 'My Daily Activities'}); } }
fouten waarschijnlijk inbegrepen |