Uses of Class
com.java4less.rchart.ChartComponent

Packages that use ChartComponent
com.java4less.rchart   
 

Uses of ChartComponent in com.java4less.rchart
 

Subclasses of ChartComponent in com.java4less.rchart
 class Axis
           Axis is made of: - The line - The ticks (small and big) - The labels (text displayed next to the big ticks) - Grid - Scale Example: // create 2 axis with scale and orientation com.java4less.rchart.Axis XAxis=new Axis(Axis.HORIZONTAL,new Scale()); com.java4less.rchart.Axis YAxis=new Axis(Axis.VERTICAL,new Scale()); // set scale values XAxis.scale.min=0; YAxis.scale.min=0; // set the tick configuration Axis.scaleTickInterval=1; XAxis.scaleTickInterval=1; // add user defined labels String[] lbls={"June","July","Aug.","Sept.","Oct.","Nov.","Dec."}; XAxis.tickLabels=lbls;
 class AxisLabel
          Axis label are texts that are displayed along the Axis.
 class BarPlotter
          Plotter used to draw a bar chart.
 class BarPlotter3D
          Plotter used to draw a bar chart.
 class CurvePlotter
          This is the plotter used to draw curves.
 class GaugePlotter
          Plotter used to create a gauge chart.
 class HAxisLabel
          A horizontal label is an axis label that will be draw along the horizontal axis.
 class Legend
          The legend contains the description of the data displayed in the chart.
 class LinePlotter
           This is the plotter used to draw a line chart.
 class LinePlotter3D
          This is the plotter used to draw a line chart.
 class PiePlotter
          Plotter used to create a pie chart.
 class Plotter
          base class used to plot a chart.
 class RadarPlotter
          Class used to plot radar charts.
 class Title
          The title will be displayed as text above the chart.
 class VAxisLabel
          A vertical label is an axis label that will be displayed along the vertical axis.