r - How Do I put Multiple Charts on the Same Graph rCharts High Charts -
using rcharts wrapper high charts, how plot different charts onto same graph? in other words, want 1 chart, let's call h1, own chart own x-axis , y-axis , chart h2 have own x-axis , y-axis, able return final chart, h3, stacks h1 , h2 1 object can return plotting function. possible? don't have example because don't have understanding of how approach problem right now. thank you.
i don't know rcharts side of it.
but in highcharts, can specify multiple y axes, specifying top height property, , multiple x axes, using offset property.
then assign xaxis , yaxis each data set.
xaxis: [{ offset : -120 },{ }], yaxis: [{ title : { text: 'y axis 0' }, height : 100 },{ title : { text: 'y axis 1' }, offset : 0, top : 200, height : 100 }] example:
Comments
Post a Comment