| java.lang.Object org.krysalis.jcharts.axisChart.BarChart
BarChart | abstract class BarChart (Code) | | author: Nathaniel Auvil version: $Id: BarChart.java,v 1.3 2004/05/27 02:15:19 nathaniel_auvil Exp $ |
Method Summary | |
static float | computeScaleHeightOfValue(double value, double oneUnitPixelSize) Takes a value and determines the number of pixels it should fill on the screen. | static void | render(AxisChart axisChart, IAxisChartDataSet iAxisChartDataSet) Draws the chart uses Rectangle2D......keep having rounding problems. |
computeScaleHeightOfValue | static float computeScaleHeightOfValue(double value, double oneUnitPixelSize)(Code) | | Takes a value and determines the number of pixels it should fill on the screen. If
there is a user defined scale and the passed value is greater than the MAX or less
than the MIN, the height will be forced to the MAX or MIN respectively.
Parameters: value - Parameters: oneUnitPixelSize - float the screen pixel coordinate |
render | static void render(AxisChart axisChart, IAxisChartDataSet iAxisChartDataSet)(Code) | | Draws the chart uses Rectangle2D......keep having rounding problems.
Parameters: axisChart - Parameters: iAxisChartDataSet - |
|
|