public interface DataRenderer
Modifier and Type | Interface and Description |
---|---|
static class |
DataRenderer.TextAlign |
Modifier and Type | Method and Description |
---|---|
boolean |
allowsFloatPolylines() |
void |
beginClipping(float x,
float y,
float w,
float h) |
void |
beginLineGraphics(float lineWidth,
java.awt.Color color) |
void |
beginPlot(float width,
float height,
boolean antialiasing) |
void |
beginSolidGraphics(java.awt.Color color) |
void |
beginTextGraphics(float fontSize,
java.awt.Color color) |
void |
drawCircle(float cx,
float cy,
float size) |
void |
drawLine(float x1,
float y1,
float x2,
float y2) |
void |
drawPolyline(float[] xvals,
float[] yvals,
int cnt) |
void |
drawPolyline(int[] xvals,
int[] yvals,
int cnt) |
void |
drawRect(float x,
float y,
float w,
float h) |
void |
drawText(java.lang.String text,
float x,
float y,
DataRenderer.TextAlign halign) |
void |
endClipping() |
void |
endGraphics() |
void |
endPlot() |
void beginPlot(float width, float height, boolean antialiasing)
void endPlot()
void beginLineGraphics(float lineWidth, java.awt.Color color)
void beginSolidGraphics(java.awt.Color color)
void drawCircle(float cx, float cy, float size)
void beginTextGraphics(float fontSize, java.awt.Color color)
void drawLine(float x1, float y1, float x2, float y2)
void drawRect(float x, float y, float w, float h)
void drawText(java.lang.String text, float x, float y, DataRenderer.TextAlign halign)
boolean allowsFloatPolylines()
void drawPolyline(float[] xvals, float[] yvals, int cnt)
void drawPolyline(int[] xvals, int[] yvals, int cnt)
void endGraphics()
void beginClipping(float x, float y, float w, float h)
void endClipping()