Package | Description |
---|---|
com.steema.teechart | |
com.steema.teechart.android | |
com.steema.teechart.drawing | |
com.steema.teechart.exports | |
com.steema.teechart.misc | |
com.steema.teechart.styles | |
com.steema.teechart.tools |
Modifier and Type | Field and Description |
---|---|
Image |
TChart.cachedImage |
Modifier and Type | Method and Description |
---|---|
Image |
TChart.getBackgroundImage()
Returns background image of TChart
|
Image |
Shape.getImage()
Rendered Image for Shape background.
Default value: null |
Image |
TChart.image(int width,
int height) |
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
|
Modifier and Type | Method and Description |
---|---|
void |
TChart.setBackgroundImage(Image value) |
void |
Shape.setImage(Image value)
Sets Rendered Image for Shape background.
Default value: null |
Modifier and Type | Method and Description |
---|---|
void |
Graphics3DAndroid.draw(int x,
int y,
Image image) |
void |
Graphics3DAndroid.draw(Rectangle r,
Image image,
boolean transparent,
boolean smoothed) |
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 |
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 |
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.
|
void |
ChartBrush.setImage(Image value)
Image to use for fill.
Default value: null |
Modifier and Type | Method and Description |
---|---|
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) |
static Image |
ImageUtils.getImage(java.lang.String fileName) |
static Image |
ImageUtils.getImage(java.net.URL resource) |
static Image |
ImageUtils.getImage(java.net.URL resource,
java.lang.Object c) |
static Image |
ImageUtils.readImage(java.io.ObjectInputStream stream,
java.lang.Object object) |
static Image |
ImageUtils.toImage(Image image) |
Modifier and Type | Method and Description |
---|---|
static Image |
ImageUtils.toImage(Image image) |
static void |
ImageUtils.writeImage(java.io.ObjectOutputStream stream,
Image image) |
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.
|