1
Someone you know how I put this caption out of my chart?
//Create the Chart
Highcharts.stockChart('grafico_relatorio', {
legend: {
enabled: true
},
scrollbar: false,
exporting: {
filename: nome_da_exportacao,
chartOptions: {
legend: {
enabled: true
},
//inputEnabled: false
rangeSelector: false,
scrollbar: false,
navigator: false
}
},
rangeSelector: {
selected: 5,
buttons: [{
type: 'all',
text: 'Tudo'
}, {
type: 'hour',
count: 1,
text: '1h'
},{
type: 'hour',
count: 12,
text: '12h'
},{
type: 'day',
count: 1,
text: '1d'
},{
type: 'day',
count: 7,
text: '7d'
},{
type: 'month',
count: 1,
text: '1m'
}]
},
credits: {
text: 'InMetrics',
position: {
align: 'right',
x: 0,
y: 5
},
style: {
fontSize: '1em',
}
},
chart: {
type: 'line',
zoomType: 'x'
},
tooltip: {
shared: true
},
series: seriesOptions,
yAxis: { //--- Primary yAxis
title: {
text: metrica
},
labels: {
align: 'right'
},
gridLineColor: '#b1b7b0',
gridLineWidth: 2
}
});
you want to put the
bytes recived
pro right side? what kind of chart is that? could add the source code that mounts it?– rray
Hi my friend, I actually want to put the data (500, 400,300,200,100) out of the chart. it is mounted using the highcharts api (I will send the code that generates it)
– Julio Henrique