|
From: <sa...@us...> - 2003-11-18 12:48:02
|
Update of /cvsroot/jrobin/src/org/jrobin/graph
In directory sc8-pr-cvs1:/tmp/cvs-serv31753/org/jrobin/graph
Modified Files:
Grapher.java
Log Message:
Fixed problem with consecutive stacked graphs...
Index: Grapher.java
===================================================================
RCS file: /cvsroot/jrobin/src/org/jrobin/graph/Grapher.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** Grapher.java 7 Nov 2003 09:53:35 -0000 1.2
--- Grapher.java 18 Nov 2003 12:47:56 -0000 1.3
***************
*** 463,467 ****
{
plotDefs[i].draw( g, xValues, parentSeries, lastPlotType );
! lastPlotType = plotDefs[i].plotType;
}
--- 463,469 ----
{
plotDefs[i].draw( g, xValues, parentSeries, lastPlotType );
! if(plotDefs[i].plotType != PlotDef.PLOT_STACK) {
! lastPlotType = plotDefs[i].plotType;
! }
}
|