I have a chart build with jquery. I have correctly insert my data and the chart show it correctly. The code used is:
var plot = jQuery.plot(jQuery("#chartplace"), [{
data: fatturato,
label: "Fatturato",
color: "#069"
}, {
data: spese,
label: "Spese",
color: "#FF6600"
}], {
series: {
lines: {
show: true,
fill: true,
fillColor: {
colors: [{
opacity: 0.05
}, {
opacity: 0.15
}]
}
},
points: {
show: true
}
},
legend: {
position: 'nw'
},
grid: {
hoverable: true,
clickable: true,
borderColor: '#ccc',
borderWidth: 1,
labelMargin: 10
},
});
How can I insert a label
for the x
and y
axis?
Thank you.
Assuming you are using jqPlot (not currently tagged jqPlot) you need to add the following options to the chart configuration object you are supplying
Documentation can be found at this link.
Your final configuration should look like