Package | Description |
---|---|
com.steema.teechart |
TeeChart Charting Library for Java.
|
com.steema.teechart.drawing | |
com.steema.teechart.exports | |
com.steema.teechart.misc | |
com.steema.teechart.printer | |
com.steema.teechart.styles | |
com.steema.teechart.tools |
Modifier and Type | Method and Description |
---|---|
Image |
TChart.getBackgroundImage()
Returns background image of TChart
|
Image |
TChart.getImage()
Return an image of the rendered Chart as Image.
|
Image |
Shape.getImage()
Rendered Image for Shape background.
Default value: null |
Image |
TChartApplet.image(int width,
int height) |
Image |
TChart.image(int width,
int height)
Return an image of the rendered Chart as Image.
|
Image |
IChart.image(int width,
int height) |
Image |
IBaseChart.image(int width,
int height) |
Image |
Chart.image(int width,
int height)
Returns an image of the chart of the defined width and height dimensions
|
Image |
TChart.internalImage(int width,
int height) |
Modifier and Type | Method and Description |
---|---|
void |
Shape.setImage(Image value)
Sets Rendered Image for Shape background.
Default value: null |
Modifier and Type | Method and Description |
---|---|
Image |
ChartBrush.getImage()
Image to use for fill.
Default value: null |
Image |
HatchStyle.getImage(java.lang.Object c) |
Modifier and Type | Method and Description |
---|---|
void |
IGraphics3D.draw(int x,
int y,
Image image) |
void |
Graphics3DVML.draw(int x,
int y,
Image image)
Paints the image at x,y coordinates.
|
void |
Graphics3DSVG.draw(int x,
int y,
Image image)
Paints the image at x,y coordinates.
It can also be used to Print the Chart in a customized way: Or you can use the TeeChart Draw method to render an image at any location. |
void |
Graphics3DPDF.draw(int x,
int y,
Image image)
Paints the image at x,y coordinates.
It can also be used to Print the Chart in a customized way: Or you can use the TeeChart Draw method to render an image at any location. |
void |
Graphics3DAWT.draw(int x,
int y,
Image image)
Paints the image at x,y coordinates.
It can also be used to Print the Chart in a customized way: Or you can use the TeeChart Draw method to render an image at any location |
void |
Graphics3DPDF.draw(Rectangle r,
Image image)
Paints the image in rectangle r.
It can also be used to Print the Chart in a customized way: Or you can use the TeeChart Draw method to render an image at any location. |
void |
IGraphics3D.draw(Rectangle rect,
Image image,
boolean transparent) |
void |
Graphics3D.draw(Rectangle r,
Image image,
boolean transparent) |
void |
IGraphics3D.draw(Rectangle rect,
Image image,
boolean transparent,
boolean smoothed) |
void |
Graphics3DVML.draw(Rectangle r,
Image image,
boolean transparent,
boolean smoothed)
Paints the image in rectangle r.
|
void |
Graphics3DSVG.draw(Rectangle r,
Image image,
boolean transparent,
boolean smoothed)
Paints the image in rectangle r.
It can also be used to Print the Chart in a customized way: Or you can use the TeeChart Draw method to render an image at any location. |
void |
Graphics3DPDF.draw(Rectangle rect,
Image image,
boolean transparent,
boolean smoothed) |
void |
Graphics3DAWT.draw(Rectangle r,
Image image,
boolean transparent,
boolean smoothed)
Paints the image in rectangle r.
It can also be used to Print the Chart in a customized way: Or you can use the TeeChart Draw method to render an image at any location. |
void |
IGraphics3D.draw(Rectangle rect,
Image image,
ImageMode mode,
boolean draw3D) |
void |
Graphics3D.draw(Rectangle r,
Image image,
ImageMode mode,
boolean transparent)
Paints the image in rectangle r.
|
static boolean |
Graphics3DAWT.hasAlpha(Image image) |
void |
ChartBrush.setImage(Image i)
Image to use for fill.
Default value: null |
Modifier and Type | Method and Description |
---|---|
Image |
ImageExport.image() |
Image |
ImageExport.image(Dimension dimension) |
Image |
ImageExport.image(int width,
int height) |
Modifier and Type | Method and Description |
---|---|
int |
PDFData.PDFImages.add(Image image)
Adds new image to the list
|
int |
PDFData.PDFImages.findImage(Image image)
Select the image in image list.
|
Constructor and Description |
---|
PDFImageEnumerator(PDFData.PDFImages images,
Image image) |
Modifier and Type | Method and Description |
---|---|
static Image |
ImageUtils.getImage(java.io.InputStream stream,
java.lang.Object control) |
static Image |
ImageUtils.getImage(java.lang.String path) |
static Image |
ImageUtils.getImage(java.net.URL resource,
java.lang.Object c) |
static Image |
ImageUtils.readImage(java.io.ObjectInputStream stream,
java.lang.Object object)
Returns a newly created image using contents read from stream.
|
static Image |
ImageUtils.toImage(java.awt.Image image) |
Modifier and Type | Method and Description |
---|---|
static java.awt.image.BufferedImage |
ImageUtils.bufferedFrom(Image image) |
Modifier and Type | Method and Description |
---|---|
void |
PrintPage.drawImage(Image image,
Rectangle dest,
Rectangle source) |
Modifier and Type | Method and Description |
---|---|
Image |
ImageBar.getImage() |
Image |
ColorGrid.getImage()
Use this property to display a bitmap within a ColorGrid.
Example This sample shows how to use the ColorGrid.Bitmap property: private void SetFlower() { InputStream ms = new InputStream(); Image flower = pictureBox1.Image; flower.Save(ms, ImageFormat.Jpeg); Bitmap bm = new Bitmap(ms); colorGrid1.Bitmap = bm; |
Modifier and Type | Method and Description |
---|---|
void |
ImageBar.setImage(Image value) |
void |
ColorGrid.setImage(Image bitmap) |
Modifier and Type | Method and Description |
---|---|
Image |
ChartImage.getImage()
Loads an image from a specified file path.
|
Modifier and Type | Method and Description |
---|---|
void |
ChartImage.setImage(Image value)
Loads an image from a specified file path.
|