intCardPointer--;
}
//invert arrays for cards
//amount of money spent to different groups in months tab 1
MyScrollPane jspChart=new MyScrollPane(new MultipleChart(strGroups, dblMonthSpent, strDates, "Spent"));
jtpAnalisys.addTab("Expenses by months", jspChart);
//jtpAnalisys.setToolTipTextAt(1, "Outcome by months");
//percent of money spent to different groups in months tab 2
if(dblTotal>0)
{
for(int i=0; i<dblMonthSpent.length; i++)
for(int k=0; k<dblMonthSpent[i].length; k++)
{
if(dblMonthSpent[i][k]<0)
dblMonthSpent[i][k]=0;
dblMonthSpent[i][k]=dblMonthSpent[i][k]*100/dblTotal;
}
}
else
{
for(int i=0; i<dblMonthSpent.length; i++)
for(int k=0; k<dblMonthSpent[i].length; k++)
{
dblMonthSpent[i][k]=0;
}
}
MultipleChart mtcPercents=new MultipleChart(strGroups, dblMonthSpent, strDates, "Spent %");
mtcPercents.setMaxValue(100);
jspChart=new MyScrollPane(mtcPercents);
jtpAnalisys.addTab("Expenses by months in percent", jspChart);
//jtpAnalisys.setToolTipTextAt(2, "Outcome by monthsin percent");
//amount of money on different credit/debit cards at different months tab 3
jspChart=new MyScrollPane(new MultipleChart(strCardNames, dblCardRemainings, strDates, "Balance"));
jtpAnalisys.addTab("Card balances", jspChart);
//jtpAnalisys.setToolTipTextAt(3, "Card balances");
}