2) there is enough space between the end of the charts and end of the Report Title
3) how can I make the two pie charts the same size? AND distribute pie segments equally? (I think it divides 1/6th of the pie)
4) I have 222 data (as packages), why does the interval look like this? (see image - highlighted in red)
I have this as the condition for interval:
Code: Select all
if(vTotalPackages == 10) {
this.Chart3_Area.YAxis.Labels.Step = 2;
} else if(vTotalPackages == 800) {
this.Chart3_Area.YAxis.Labels.Step = 160;
} else if(vTotalPackages > 800) {
this.Chart3_Area.YAxis.Labels.Step = 200;
} else {
this.Chart3_Area.YAxis.Labels.Step = 1;
}