hello, i want to replicate this type of ChartJs (http://www.chartjs.org/samples/latest/charts/bar/stacked.html), is there any possibility?
Hi,
if you choose ChartType Bar and set both axes to Stacked = true, you can easily achieve this:
Best regards
Frank
Try to explain better:
with this data
List<Object> _list = new List<Object>();
_list.Add(new object[] { 100, 200, 300 });
_list.Add(new object[] { 100, 200, 300 });
_list.Add(new object[] { 100, 200, 300 });
_list.Add(new object[] { 100, 200, 300 });
_list.Add(new object[] { 100, 200, 300 });
_list.Add(new object[] { 100, 200, 300 });
i want to arrive to this type of Chart (attached img)