I use the jquery plugin SimpleChart.js
to generate a graph in lines, I need the caption to be positioned next to its line.
$("#Linegraph").SimpleChart({
ChartType: "Line",
toolwidth: "50",
toolheight: "25",
axiscolor: "#E6E6E6",
textcolor: "#6E6E6E",
showlegends: true,
data: [
graphdata1,graphdata2
],
legendsize: "140",
legendposition: 'bottom',
xaxislabel: 'Dias',
title: 'Usuários',
yaxislabel: 'Clientes'
});
I think this does not allow alignment of the legend on the side, so I accept suggestions from some plugins that make this feature available.