|
|||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--java.awt.Component | +--java.awt.Canvas | +--com.jpowered.vbgraph.VerticalBarGraph
This java bean will generate a bar graph from the supplied data
according to the various options set.
A simple Bar Graph can be added to an application with just the following steps:-
Step 1 - Initializing the Bean
private VerticalBarGraph vbargraph;
vbargraph = (VerticalBarGraph)Beans.instantiate(null,"com.jpowered.vbgraph.VerticalBarGraph");
Step 2 - Create a Data Vector
Vector bardata = new Vector();
bardata.add(new Graphdata(1,1,34000));
bardata.add(new Graphdata(1,2,34900));
bardata.add(new Graphdata(1,3,46000));
bardata.add(new Graphdata(2,1,27600));
bardata.add(new Graphdata(2,2,24000));
bardata.add(new Graphdata(2,3,24900));
bardata.add(new Graphdata(3,1,22000));
bardata.add(new Graphdata(3,2,26600));
bardata.add(new Graphdata(3,3,14100));
bardata.add(new Graphdata(4,1,54900));
bardata.add(new Graphdata(4,2,36650));
bardata.add(new Graphdata(4,3,36650));
Step 3 - Add the data vector to the bean instance
vbargraph.setData(bardata);
Step 4 - Set the size of the graph
vbargraph.setSize(450,450);
Step 5 - Create a Frame on which to display the bean<
Frame f = new Frame();
f.setSize(500,500);
f.addWindowListener(new ApplicationWindowAdapter());
Step 6 - Add the bean to the frame
f.add(vbargraph);
Many further properties and characteristics of the chart display may be configured.
see the various Set methods below.
Fields inherited from class java.awt.Component |
BOTTOM_ALIGNMENT, CENTER_ALIGNMENT, LEFT_ALIGNMENT, RIGHT_ALIGNMENT, TOP_ALIGNMENT |
Fields inherited from interface java.awt.image.ImageObserver |
ABORT, ALLBITS, ERROR, FRAMEBITS, HEIGHT, PROPERTIES, SOMEBITS, WIDTH |
Constructor Summary | |
VerticalBarGraph()
Creates a new instance of the Vertical Bar Graph Bean |
Method Summary | |
boolean |
getAutoscale()
Returns the current state of the AutoScale flag. |
boolean |
getAxis()
Returns the current state of the Axis flag. |
java.awt.Color |
getAxiscolor()
Returns Color used for the Axis lines. |
java.awt.Color |
getBackgroundcolor()
Returns Color used for the background of the whole chart area. |
int |
getBar_spacing()
Returns an integer Value indicating the gap in pixels between bars |
java.awt.Color |
getBaroutlinecolor()
Returns Color used for outlining the bars. |
int |
getBarwidth()
Returns the width (in pixels) of each bar |
double |
getChartscale()
Returns an double Value indicating the chart scale. This figure is the value represented by each row of the grid. |
double |
getChartscale2()
Returns an double Value indicating the 2nd chart scale (right hand scale). This figure is the value represented by each row of the grid. |
double |
getChartstarty()
Returns an double Value indicating the starting value of Y-axis. |
double |
getChartstarty2()
Returns an double Value indicating the starting value of 2nd Y-axis (right hand scale). |
java.util.Vector |
getData()
Returns the data vector currently set for the chart The data vector contains all the data to be plotted by the chart Each element in the vector is a Graphdata object. |
Dataobject |
getDataobj()
Returns the data object currently set for the chart The data object contains all the data to be plotted by the chart |
int |
getDepth3d()
Returns the depth (in pixels) of the 3D effect |
java.awt.Color |
getFloorcolor()
Returns Color used for the x-axis grid floor when in 3D mode. |
boolean |
getGradientfill()
Returns the current state of the Gradient Fill flag. |
java.awt.Image |
getGraphimage()
This method request the chart to be produced as a java.awt.Image This is method is particularly useful where the component is to be used within JSP and Servlets. |
boolean |
getGrid()
Returns the current state of the Grid flag. |
java.awt.Color |
getGridbgcolor()
Returns the color to used for the background of the grid |
java.awt.Image |
getGridbgimage()
Returns the image to used for the background of the grid |
java.awt.Color |
getGridcolor()
Returns Color used for the grid lines. |
java.awt.Point |
getGridposition()
Returns the position of the bottom left of the grid |
java.lang.String |
getGridStyle()
Returns a Value indicating the line style of the grid line drawing The returned value will be one of the following:-
Solid |
Imageobject |
getImageobj()
Returns the free form images object currently set for the chart The free form images object contains all the custom images to be added to the chart |
java.awt.Color |
getLabelcolor()
Returns Color used for the x-axis labels. |
java.lang.String |
getLabelorientation()
Returns a Value indicating the orientation of the x-axis labels. The returned value will be one of the following:-
Horizontal |
int |
getLabelsy_offset()
Returns an integer Value indicating the offset value of every second x-axis label. |
int |
getLabelsy()
Returns an integer Value indicating the y co-ordinate of the x-axis labels. |
boolean |
getLegend()
Returns the current state of the Legend flag. |
java.awt.Color |
getLegendbackground()
Returns Color used for the background of the legend. |
java.awt.Color |
getLegendborder()
Returns Color used for the legend border. |
java.awt.Font |
getLegendfont()
Returns the font used for the legend |
java.awt.Point |
getLegendposition()
Returns the position of the top left of the legend |
java.awt.Color |
getLegendtextcolor()
Returns Color used for the legend text. |
java.lang.String |
getLegendtitle()
Returns the text used for the legend title |
int |
getNcols()
Returns the number of columns of the chart area |
int |
getNdecplaces()
Returns the number of decimal places which will be displayed for numeric values on the chart area. This property effects the numeric display format for the y-axis values and the pop-up bar values. |
int |
getNrows()
Returns the number of rows of the chart area |
int |
getNseries()
Returns the Number of Series property This property refers to the nunber od distinct series within the data or to put it another way the number of bars within a column. |
boolean |
getOutline()
Returns the current state of the Bar Outline flag. |
java.lang.String |
getPopup_post()
Returns the string to be added at the end of the pop-up value eg. |
java.lang.String |
getPopup_pre()
Returns the string to be added at the front of the pop-up value eg. |
java.awt.Color |
getPopupbgcolor()
Returns Color used for the background of the popup value display. |
java.lang.String |
getPopupcursor()
Returns a string indicating the type of cursor used for links The returned string will be one of the following:-
Hand |
java.awt.Font |
getPopupfont()
Returns Font used for the PopUp value display. |
java.util.Vector |
getSeriesinfo()
Returns the series information in java.util.Vector form The series data contains information about each series of data that the chart is to plot. For each series of data the following properties can be set:- - Series Color - Legend Label - Scale (left or right hand y-axis) |
Seriesobject |
getSeriesobj()
Returns the series object currently set for the chart The series object contains information about each series of data that the chart is to plot. For each series of data the following properties can be set:- - Series Color - Legend Label - Scale (left or right hand y-axis) |
Targetobject |
getTargetobj()
Returns the Target Lines object currently set for the chart The Target Lines object contains all the target line information to be drawn on the chart |
Textobject |
getTextobj()
Returns the free form text object currently set for the chart The free form text object contains all the custom text to be added to the chart |
java.lang.String |
getThousandseparator()
Returns the string to be used as the thousand seperator for all numeric values e.g the comma character "1,000,000" |
boolean |
getThreed()
Returns the current state of the 3D flag. |
java.awt.Color |
getTitlecolor()
Specifies the color to used for the main chart title |
java.awt.Font |
getTitlefont()
Returns the font used for the main chart title |
java.awt.Point |
getTitleposition()
Returns the position of the main chart title |
java.lang.String |
getTitletext()
Returns the text used for the main chart title |
int |
getVspace()
Returns the vertical spacing (number of pixels) between the grid rows |
java.awt.Font |
getXlabel_font()
Returns Font used for the X axis labels. |
Xlabelobject |
getXlabelobj()
Returns the X-Axis Labels object currently set for the chart The X-Axis Labels object contains all the labels to written along the x-axis |
java.awt.Color |
getXtitlecolor()
Specifies the color to used for the x-axis title |
java.awt.Font |
getXtitlefont()
Returns the font used for the x-axis title |
java.awt.Point |
getXtitleposition()
Returns the position of the x-axis title |
java.lang.String |
getXtitletext()
Returns the text used for the x-axis title |
java.awt.Color |
getY2label_color()
Returns Color used for the 2nd Y-axis labels. |
java.lang.String |
getY2label_post()
Returns the string to be added at the end of the 2nd y-axis values eg. |
java.lang.String |
getY2label_pre()
Returns the string to be added at the front of the 2nd y-axis values eg. |
java.awt.Font |
getYlabel_font()
Returns Font used for the Y axis labels. |
java.lang.String |
getYlabel_post()
Returns the string to be added at the end of the y-axis values eg. |
java.lang.String |
getYlabel_pre()
Returns the string to be added at the front of the y-axis values eg. |
boolean |
getYlabels()
Returns the current state of the Y Labels flag. |
java.awt.Color |
getYtitlecolor()
Specifies the color to used for the y-axis title |
java.awt.Font |
getYtitlefont()
Returns the font used for the y-axis title |
java.awt.Point |
getYtitleposition()
Returns the position of the y-axis title |
java.lang.String |
getYtitletext()
Returns the text used for the y-axis title |
void |
setAutoscale(boolean flag)
Specifies whether the chart should automatically calculate the scale. |
void |
setAxis(boolean flag)
Specifies whether the chart should be drawn with or without axis |
void |
setAxiscolor(java.awt.Color color)
Specifies the Color for the Axis lines |
void |
setBackgroundcolor(java.awt.Color color)
Specifies the Color for the background of the whole chart area |
void |
setBar_spacing(int intnumber)
Specifies the gap in pixels between bars |
void |
setBaroutlinecolor(java.awt.Color color)
Specifies the Color for outlining the bars |
void |
setBarwidth(int intnumber)
Specifies the width of each bar (in pixels) |
void |
setChartscale(double dblnumber)
Specifies the chart scale. This figure is the value represented by each row of the grid. |
void |
setChartscale2(double dblnumber)
Specifies the 2nd chart scale (right hand scale). This figure is the value represented by each row of the grid. |
void |
setChartstarty(double dblnumber)
Specifies the starting value of Y-axis. |
void |
setChartstarty2(double dblnumber)
Specifies the starting value of 2nd Y-axis (right hand scale). |
void |
setData(java.util.Vector vector)
Sets the data vector to be used by the chart The data vector contains all the data to be plotted by the chart Each element in the vector should be a Graphdata object. |
void |
setDataobj(Dataobject data_object)
Sets the data object to be used by the chart The data object contains all the data to be plotted by the chart |
void |
setDepth3d(int intnumber)
Specifies the depth (in pixels) of the 3D effect |
void |
setFloorcolor(java.awt.Color color)
Specifies the Color for the x-axis grid floor when in 3D mode. |
void |
setGradientfill(boolean flag)
Specifies whether the bars should be should be shaded with a graduation of the color specified. |
void |
setGrid(boolean flag)
Specifies whether the chart should be drawn with or without a grid |
void |
setGridbgcolor(java.awt.Color color)
Specifies the color to used for the background of the grid |
void |
setGridbgimage(java.awt.Image image)
Specifies the image to used for the background of the grid |
void |
setGridcolor(java.awt.Color color)
Specifies the Color for the grid lines |
void |
setGridposition(java.awt.Point point)
Specifies the position of the bottom left of the grid |
void |
setGridStyle(java.lang.String text)
Specifies the line style of the grid line drawing The String value should be one of the following:-
Solid |
void |
setImageobj(Imageobject image_obj)
Sets the free form images object to be used by the chart The free form images object contains all the custom images to be added to the chart |
void |
setLabelcolor(java.awt.Color color)
Specifies the Color for the x-axis labels |
void |
setLabelorientation(java.lang.String orient)
Specifies the orientation of the x-axis labels. The String value should be one of the following:-
Horizontal |
void |
setLabelsy_offset(int intnumber)
Specifies the offset value of every second x-axis label. This is particularly useful when the label orientation is set to Horizontal. |
void |
setLabelsy(int intnumber)
Specifies the y co-ordinate of the x-axis labels. |
void |
setLegend(boolean flag)
Specifies whether the Legend should be automatically generated |
void |
setLegendbackground(java.awt.Color color)
Specifies the Color for the background of the legend |
void |
setLegendborder(java.awt.Color color)
Specifies the Color for the legend border |
void |
setLegendfont(java.awt.Font font)
Specifies the font used for the legend |
void |
setLegendposition(java.awt.Point point)
Specifies the position of the top left of the legend |
void |
setLegendtextcolor(java.awt.Color color)
Specifies the Color for the legend text |
void |
setLegendtitle(java.lang.String string)
Specifies the text used for the legend title |
void |
setNcols(int intnumber)
Specifies the number of columns of the chart area |
void |
setNdecplaces(int intnumber)
Specifies the number of decimal places which will be displayed for numeric values on the chart area. This property effects the numeric display format for the y-axis values and the pop-up bar values. |
void |
setNrows(int intnumber)
Specifies the number of rows of the chart area |
void |
setNseries(int intnumber)
Specifies the Number of Series property This property refers to the nunber od distinct series within the data or to put it another way the number of bars within a column. |
void |
setOutline(boolean flag)
Specifies whether the bars should be outlined |
void |
setPopup_post(java.lang.String string)
Specifies the string to be added at the end of the pop-up value |
void |
setPopup_pre(java.lang.String string)
Specifies the string to be added at the front of the pop-up value |
void |
setPopupbgcolor(java.awt.Color color)
Specifies the Color for the popup value display |
void |
setPopupcursor(java.lang.String cursor)
Specifies the cursor to be used for links The String value can be one of the following:- ('Hand' would be the normal choice)
Hand |
void |
setPopupfont(java.awt.Font font)
Specifies the Font for the PopUp value display. |
void |
setSeriesinfo(java.util.Vector vector)
Sets the series information for the chart The series data contains information about each series of data that the chart is to plot. For each series of data the following properties can be set:- - Series Color - Legend Label - Scale (left or right hand y-axis) |
void |
setSeriesobj(Seriesobject ser_obj)
Sets the series object for the chart The series object contains information about each series of data that the chart is to plot. For each series of data the following properties can be set:- - Series Color - Legend Label - Scale (left or right hand y-axis) |
void |
setTargetobj(Targetobject target_obj)
Sets the Target Lines object to be used by the chart The Target Lines object contains all the target line information to be drawn on the chart |
void |
setTextobj(Textobject text_obj)
Sets the free form text object to be used by the chart The free form text object contains all the custom text to be added to the chart |
void |
setThousandseparator(java.lang.String string)
Specifies the string to be used as the thousand seperator for all numeric values |
void |
setThreed(boolean flag)
Specifies whether the chart should be drawn in 2D or 3D mode. |
void |
setTitlecolor(java.awt.Color color)
Specifies the color to used for the main chart title |
void |
setTitlefont(java.awt.Font font)
Specifies the font used for the main chart title |
void |
setTitleposition(java.awt.Point point)
Specifies the position of the main chart title |
void |
setTitletext(java.lang.String string)
Specifies the text used for the main chart title |
void |
setVspace(int intnumber)
Specifies the vertical spacing (number of pixels) between the grid rows |
void |
setXlabel_font(java.awt.Font font)
Specifies the Font for the x-axis labels |
void |
setXlabelobj(Xlabelobject xlabel_obj)
Sets the X-Axis Labels object to be used by the chart The X-Axis Labels object contains all the labels to written along the x-axis |
void |
setXtitlecolor(java.awt.Color color)
Specifies the color to used for the x-axis title |
void |
setXtitlefont(java.awt.Font font)
Specifies the font used for the x-axis title |
void |
setXtitleposition(java.awt.Point point)
Specifies the position of the x-axis title |
void |
setXtitletext(java.lang.String string)
Specifies the text used for the x-axis title |
void |
setY2label_color(java.awt.Color color)
Specifies the Color for the 2nd Y-axis labels |
void |
setY2label_post(java.lang.String string)
Specifies the string to be added at the end of the 2nd y-axis values |
void |
setY2label_pre(java.lang.String string)
Specifies the string to be added at the front of the 2nd y-axis values |
void |
setYlabel_font(java.awt.Font font)
Specifies the Font for the y-axis labels |
void |
setYlabel_post(java.lang.String string)
Specifies the string to be added at the end of the y-axis values |
void |
setYlabel_pre(java.lang.String string)
Specifies the string to be added at the front of the y-axis values |
void |
setYlabels(boolean flag)
Specifies whether the chart should be drawn with or without Y Axis Labels |
void |
setYtitlecolor(java.awt.Color color)
Specifies the color to used for the y-axis title |
void |
setYtitlefont(java.awt.Font font)
Specifies the font used for the y-axis title |
void |
setYtitleposition(java.awt.Point point)
Specifies the position of the y-axis title |
void |
setYtitletext(java.lang.String string)
Specifies the text used for the y-axis title |
Methods inherited from class java.awt.Canvas |
addNotify, getAccessibleContext, paint |
Methods inherited from class java.awt.Component |
action, add, addComponentListener, addFocusListener, addHierarchyBoundsListener, addHierarchyListener, addInputMethodListener, addKeyListener, addMouseListener, addMouseMotionListener, addPropertyChangeListener, addPropertyChangeListener, bounds, checkImage, checkImage, contains, contains, createImage, createImage, deliverEvent, disable, dispatchEvent, doLayout, enable, enable, enableInputMethods, getAlignmentX, getAlignmentY, getBackground, getBounds, getBounds, getColorModel, getComponentAt, getComponentAt, getComponentOrientation, getCursor, getDropTarget, getFont, getFontMetrics, getForeground, getGraphics, getGraphicsConfiguration, getHeight, getInputContext, getInputMethodRequests, getListeners, getLocale, getLocation, getLocation, getLocationOnScreen, getMaximumSize, getMinimumSize, getName, getParent, getPeer, getPreferredSize, getSize, getSize, getToolkit, getTreeLock, getWidth, getX, getY, gotFocus, handleEvent, hasFocus, hide, imageUpdate, inside, invalidate, isDisplayable, isDoubleBuffered, isEnabled, isFocusTraversable, isLightweight, isOpaque, isShowing, isValid, isVisible, keyDown, keyUp, layout, list, list, list, list, list, locate, location, lostFocus, minimumSize, mouseDown, mouseDrag, mouseEnter, mouseExit, mouseMove, mouseUp, move, nextFocus, paintAll, postEvent, preferredSize, prepareImage, prepareImage, print, printAll, remove, removeComponentListener, removeFocusListener, removeHierarchyBoundsListener, removeHierarchyListener, removeInputMethodListener, removeKeyListener, removeMouseListener, removeMouseMotionListener, removeNotify, removePropertyChangeListener, removePropertyChangeListener, repaint, repaint, repaint, repaint, requestFocus, reshape, resize, resize, setBackground, setBounds, setBounds, setComponentOrientation, setCursor, setDropTarget, setEnabled, setFont, setForeground, setLocale, setLocation, setLocation, setName, setSize, setSize, setVisible, show, show, size, toString, transferFocus, update, validate |
Methods inherited from class java.lang.Object |
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Methods inherited from interface java.awt.event.MouseMotionListener |
mouseDragged, mouseMoved |
Constructor Detail |
public VerticalBarGraph()
Method Detail |
public boolean getThreed()
public void setThreed(boolean flag)
flag
- boolean indicating true or false.public boolean getGrid()
public void setGrid(boolean flag)
flag
- boolean indicating true or false.public boolean getAxis()
public void setAxis(boolean flag)
flag
- boolean indicating true or false.public boolean getYlabels()
public void setYlabels(boolean flag)
flag
- boolean indicating true or false.public boolean getOutline()
public void setOutline(boolean flag)
flag
- boolean indicating true or false.public boolean getLegend()
public void setLegend(boolean flag)
flag
- boolean indicating true or false.public boolean getAutoscale()
setChartscale(double dblnumber)
,
setChartstarty(double dblnumber)
public void setAutoscale(boolean flag)
flag
- boolean indicating true or false.setChartscale(double dblnumber)
,
setChartstarty(double dblnumber)
public boolean getGradientfill()
public void setGradientfill(boolean flag)
flag
- boolean indicating true or false.public int getNrows()
public void setNrows(int intnumber)
intnumber
- int specifying the number of rows of the chart gridpublic int getNcols()
public void setNcols(int intnumber)
intnumber
- int specifying the number of columns of the chart gridpublic int getVspace()
public void setVspace(int intnumber)
intnumber
- int specifying the number of pixels between each grid rowpublic int getNseries()
public void setNseries(int intnumber)
intnumber
- int specifying the specifying the number series of datapublic int getBarwidth()
public void setBarwidth(int intnumber)
intnumber
- int specifying the width in pixels of each barpublic int getDepth3d()
public void setDepth3d(int intnumber)
intnumber
- int specifying the width in pixels of each barpublic int getNdecplaces()
public void setNdecplaces(int intnumber)
intnumber
- int specifying the number of decimal places to display for numberic values.public java.lang.String getLabelorientation()
Horizontal
Vertical
Up Angle
Down Angle
public void setLabelorientation(java.lang.String orient)
Horizontal
Vertical
Up Angle
Down Angle
orient
- java.lang.String specifying the orientation of the x-axis labels.public int getLabelsy()
public void setLabelsy(int intnumber)
intnumber
- int specifying the y co-ordinate of the x-axis labels.public int getLabelsy_offset()
public void setLabelsy_offset(int intnumber)
intnumber
- int specifying the offset value of every second x-axis label.public int getBar_spacing()
public void setBar_spacing(int intnumber)
intnumber
- int specifying the gap in pixels between barspublic java.lang.String getGridStyle()
Solid
Dotted
Dashed
Solid
Long Dashed
public void setGridStyle(java.lang.String text)
Solid
Dotted
Dashed
Solid
Long Dashed
text
- java.lang.String specifying the line style of the grid line drawing.public double getChartscale()
public void setChartscale(double dblnumber)
dblnumber
- java.lang.double specifying the chart scale.public double getChartstarty()
public void setChartstarty(double dblnumber)
dblnumber
- java.lang.double specifying the starting value of Y-axis..public double getChartscale2()
public void setChartscale2(double dblnumber)
dblnumber
- java.lang.double specifying the 2nd chart scale.public double getChartstarty2()
public void setChartstarty2(double dblnumber)
dblnumber
- java.lang.double specifying the starting value of 2nd Y-axis (right hand scale).public java.awt.Font getXlabel_font()
public void setXlabel_font(java.awt.Font font)
font
- java.awt.Fontpublic java.awt.Font getYlabel_font()
public void setYlabel_font(java.awt.Font font)
font
- java.awt.Fontpublic java.awt.Font getPopupfont()
public void setPopupfont(java.awt.Font font)
font
- java.awt.Fontpublic java.awt.Color getGridcolor()
public void setGridcolor(java.awt.Color color)
color
- java.awt.Colorpublic java.awt.Color getAxiscolor()
public void setAxiscolor(java.awt.Color color)
color
- java.awt.Colorpublic java.awt.Color getFloorcolor()
public void setFloorcolor(java.awt.Color color)
color
- java.awt.Colorpublic java.awt.Color getBaroutlinecolor()
public void setBaroutlinecolor(java.awt.Color color)
color
- java.awt.Colorpublic java.awt.Color getLabelcolor()
public void setLabelcolor(java.awt.Color color)
color
- java.awt.Colorpublic java.awt.Color getBackgroundcolor()
public void setBackgroundcolor(java.awt.Color color)
color
- java.awt.Colorpublic java.awt.Color getLegendbackground()
public void setLegendbackground(java.awt.Color color)
color
- java.awt.Colorpublic java.awt.Color getLegendborder()
public void setLegendborder(java.awt.Color color)
color
- java.awt.Colorpublic java.awt.Color getLegendtextcolor()
public void setLegendtextcolor(java.awt.Color color)
color
- java.awt.Colorpublic java.awt.Color getPopupbgcolor()
public void setPopupbgcolor(java.awt.Color color)
color
- java.awt.Colorpublic java.awt.Color getY2label_color()
public void setY2label_color(java.awt.Color color)
color
- java.awt.Colorpublic java.lang.String getPopup_pre()
public void setPopup_pre(java.lang.String string)
string
- java.lang.Stringpublic java.lang.String getPopup_post()
public void setPopup_post(java.lang.String string)
string
- java.lang.Stringpublic java.lang.String getYlabel_pre()
public void setYlabel_pre(java.lang.String string)
string
- java.lang.Stringpublic java.lang.String getYlabel_post()
public void setYlabel_post(java.lang.String string)
string
- java.lang.Stringpublic java.lang.String getY2label_pre()
public void setY2label_pre(java.lang.String string)
string
- java.lang.Stringpublic java.lang.String getY2label_post()
public void setY2label_post(java.lang.String string)
string
- java.lang.Stringpublic java.lang.String getThousandseparator()
public void setThousandseparator(java.lang.String string)
string
- java.lang.Stringpublic java.awt.Image getGridbgimage()
public void setGridbgimage(java.awt.Image image)
image
- java.awt.Imagepublic java.awt.Color getGridbgcolor()
public void setGridbgcolor(java.awt.Color color)
color
- java.awt.Colorpublic java.awt.Point getGridposition()
public void setGridposition(java.awt.Point point)
point
- java.awt.Pointpublic java.lang.String getLegendtitle()
public void setLegendtitle(java.lang.String string)
string
- java.lang.Stringpublic java.awt.Point getLegendposition()
public void setLegendposition(java.awt.Point point)
point
- java.awt.Pointpublic java.awt.Font getLegendfont()
public void setLegendfont(java.awt.Font font)
font
- java.awt.Fontpublic java.lang.String getTitletext()
public void setTitletext(java.lang.String string)
string
- java.lang.Stringpublic java.awt.Font getTitlefont()
public void setTitlefont(java.awt.Font font)
font
- java.awt.Fontpublic java.awt.Color getTitlecolor()
titlecolor
- java.awt.Colorpublic void setTitlecolor(java.awt.Color color)
color
- java.awt.Colorpublic java.awt.Point getTitleposition()
public void setTitleposition(java.awt.Point point)
point
- java.awt.Pointpublic java.lang.String getXtitletext()
public void setXtitletext(java.lang.String string)
string
- java.lang.Stringpublic java.awt.Font getXtitlefont()
public void setXtitlefont(java.awt.Font font)
font
- java.awt.Fontpublic java.awt.Color getXtitlecolor()
xtitlecolor
- java.awt.Colorpublic void setXtitlecolor(java.awt.Color color)
color
- java.awt.Colorpublic java.awt.Point getXtitleposition()
public void setXtitleposition(java.awt.Point point)
point
- java.awt.Pointpublic java.lang.String getYtitletext()
public void setYtitletext(java.lang.String string)
string
- java.lang.Stringpublic java.awt.Font getYtitlefont()
public void setYtitlefont(java.awt.Font font)
font
- java.awt.Fontpublic java.awt.Color getYtitlecolor()
ytitlecolor
- java.awt.Colorpublic void setYtitlecolor(java.awt.Color color)
color
- java.awt.Colorpublic java.awt.Point getYtitleposition()
public void setYtitleposition(java.awt.Point point)
point
- java.awt.Pointpublic java.lang.String getPopupcursor()
Hand
Crosshair
Default
Hand
Text
North Resize
North East Resize
East Resize
South East Resize
South Resize
South West Resize
West Resize
North West Resize
public void setPopupcursor(java.lang.String cursor)
Hand
Crosshair
Default
Hand
Text
North Resize
North East Resize
East Resize
South East Resize
South Resize
South West Resize
West Resize
North West Resize
cursor
- java.lang.Stringpublic Seriesobject getSeriesobj()
Seriesobject
public void setSeriesobj(Seriesobject ser_obj)
seriesobj
- com.jpowered.vbgraph.SeriesobjectSeriesobject
public java.util.Vector getSeriesinfo()
Seriesdata
public void setSeriesinfo(java.util.Vector vector)
vector
- java.util.VectorSeriesdata
public Dataobject getDataobj()
Dataobject
public void setDataobj(Dataobject data_object)
dataobj
- com.jpowered.vbgraph.DataobjectDataobject
public java.util.Vector getData()
Graphdata
public void setData(java.util.Vector vector)
vector
- com.jpowered.vbgraph.GraphdataGraphdata
public Textobject getTextobj()
Textobject
public void setTextobj(Textobject text_obj)
textobj
- com.jpowered.vbgraph.TextobjectTextobject
public Imageobject getImageobj()
Imageobject
public void setImageobj(Imageobject image_obj)
imageobj
- com.jpowered.vbgraph.ImageobjectImageobject
public Xlabelobject getXlabelobj()
Xlabelobject
public void setXlabelobj(Xlabelobject xlabel_obj)
xlabelobj
- com.jpowered.vbgraph.XlabelobjectXlabelobject
public Targetobject getTargetobj()
Targetobject
public void setTargetobj(Targetobject target_obj)
targetobj
- com.jpowered.vbgraph.TargetobjectTargetobject
public java.awt.Image getGraphimage()
|
|||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |