function annualGraph(t_id, s_code, options) { $.ajax({ url: "https://tools.energypier.ch/solaire_aligro/query_data.php", jsonp: "callback", jsonpCallback: "callback" + s_code, dataType: "jsonp", data: { station: s_code, content: "annual_prod" }, success: function( data ) { $(t_id).highcharts({ chart: { type: 'column', height: '35%', backgroundColor: 'rgba(0,0,0,0.0)' }, plotOptions: { column: { pointPadding: 0, borderWidth: 0, groupPadding: 0, shadow: false } }, data: { csv: data, }, legend: { enabled: false }, series: [{ color: '#132a61', // servipier blue }], title: { text: null }, xAxis: { tickInterval: 1, }, yAxis: { title: { text: 'Énérgie [kWh]' }, max: 4000, } }); } }); }