From: Chris M. <ki...@us...> - 2004-07-01 01:48:03
|
Update of /cvsroot/jcharts/krysalis-jcharts/src/java/org/krysalis/jcharts/properties In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8904/src/java/org/krysalis/jcharts/properties Modified Files: AxisTypeProperties.java Log Message: Dual Y axis changes, removal of redundant methods that were used in original dual axis mods Index: AxisTypeProperties.java =================================================================== RCS file: /cvsroot/jcharts/krysalis-jcharts/src/java/org/krysalis/jcharts/properties/AxisTypeProperties.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** AxisTypeProperties.java 14 Jun 2004 01:24:16 -0000 1.3 --- AxisTypeProperties.java 1 Jul 2004 01:47:53 -0000 1.4 *************** *** 87,102 **** private boolean showEndBorder = true; ! private boolean showAxisLabels= true; ! // Dual Y axis changes integrated CMC 25Aug03 ! //variable added for the right axis ! //the method corresponding are so implemented ! private ChartFont scaleChartFontRight = ChartFont.DEFAULT_AXIS_SCALE; ! private boolean showRightAxis = false; ! private float secondScaleRight=1; ! private double minRightAxis = 0; ! private double maxRightAxis = 0; - private int labelRotationAngle = 0; private ChartFont titleChartFont= ChartFont.DEFAULT_AXIS_TITLE; --- 87,95 ---- private boolean showEndBorder = true; ! private boolean showAxisLabels= true; ! private boolean showAxis = true; ! private int labelRotationAngle = 0; private ChartFont titleChartFont= ChartFont.DEFAULT_AXIS_TITLE; *************** *** 123,127 **** } - public boolean showAxisLabels() { --- 116,119 ---- *************** *** 255,270 **** } ! // Dual Y axis changes integrated CMC 25Aug03 ! public ChartFont getScaleChartFontRight() ! { ! return scaleChartFontRight; ! } ! ! ! public void setScaleChartFontRight( ChartFont scaleChartFontRight ) ! { ! this.scaleChartFontRight = scaleChartFontRight; ! } ! public ChartFont getAxisTitleChartFont() { --- 247,251 ---- } ! public ChartFont getAxisTitleChartFont() { *************** *** 290,343 **** } ! ! // Dual Y axis changes integrated CMC 25Aug03 ! public boolean getShowRightAxis() { ! return this.showRightAxis; } ! public void setShowRightAxis( boolean showRightAxis ) { ! this.showRightAxis = showRightAxis; } ! ! public float getSecondScaleRight() ! { ! return this.secondScaleRight; ! } ! ! ! public void setSecondScaleRight(float secondScaleRight) ! { ! this.secondScaleRight=secondScaleRight; ! } ! ! public double getMinRightAxis() ! { ! return this.minRightAxis; ! } ! ! ! public void setMinRightAxis(double minRightAxis) ! { ! this.minRightAxis=minRightAxis; ! } ! ! ! public double getMaxRightAxis() ! { ! return this.maxRightAxis; ! } ! ! ! public void setMaxRightAxis(double maxRightAxis) ! { ! this.maxRightAxis=maxRightAxis; ! } ! ! ! public float getPaddingBetweenAxisLabels() { return this.paddingBetweenAxisLabels; --- 271,286 ---- } ! public boolean getShowAxis() { ! return this.showAxis; } ! public void setShowAxis( boolean showAxis ) { ! this.showAxis = showAxis; } ! public float getPaddingBetweenAxisLabels() { return this.paddingBetweenAxisLabels; |