DoAfterConstruction |
This method will be called after the chart has been created.
|
CheckConnected |
Checks if the chart is already loaded.
|
CheckRange |
Checks if a parameter is in the range.
|
CheckRangeObjPath |
Checks if an ObjPath is in the range.
|
CheckRangeObjPathOrImageIndex |
Checks that a range or path are between bounds. Internal use.
|
GetObjectProperties |
Returns information on an object and all of its children. If the shape doesn't exist, this method returns null.
|
HasImageAlternate |
Returns true if the image has an alternate representation. This currently happens only with SVG images, which have a PNG base and an SVG alternate. If the image has an alternate, you can get the data with GetImageAlternate |
GetImageProperties |
Overloaded GetImageProperties(Integer) GetImageProperties(Integer, Boolean, string)
|
AddImage |
Overloaded AddImage(TUIImage, IImageProperties) AddImage(TBytes, IImageProperties) AddImage(TStream, IImageProperties) AddImage(string, IImageProperties) AddImage(TBytes, TXlsImgType, IImageProperties) AddImage(TStream, TXlsImgType, IImageProperties)
|
AddImageAlternate |
Adds an image to the active sheet. Currently this method is only needed for SVG images, since SVG images are stored as both PNG and SVG inside the xlsx file. This method allows you to supply both images.
|
DeleteImage |
Overloaded DeleteImage(Integer) DeleteImage(Integer, Boolean, string)
|
ClearImage |
Overloaded ClearImage(Integer) ClearImage(Integer, Boolean, string)
|
AddAutoShape |
Adds an autoshape to an existing embedded chart. Note that the coordinates for the shape are in chart coords, meaning that only row1, row2, col1 and col2 are used, and they represent the percentage in 1/4000 of the coordinate. So 0 means the top and left of the parent chart, and 4000 means the bottom and right of the parent chart.
|
SetShapeLinkedCell |
Links the shape to a cell, if the shape can be linked. To unlink the cell, make linkedCell null. Note that this method applies to shapes like a rectangle or a circle, not to the link of a forms object like a combobox or a radiobutton.
|
GetShapeLinkedCell |
Returns the cell that is linked to the shape. If the object isn't linked, this method will return null. Note that when you change the value in the cell linked to this object, the value of the object will change.
|
ImageIndexToObjectPath |
Returns the absolute object path for an image, given an image index. Note that this method can be slow if there are many objects in the file. Whenever possible, prefer the methods that take directly an imageIndex instead of converting the imageIndex to an objectPath.
|
SetObjectText |
Overloaded SetObjectText(Integer, string, string) SetObjectText(Integer, string, TRichString) SetObjectText(Integer, string, TDrawingRichString)
|
DeleteObject |
Overloaded DeleteObject(Integer) DeleteObject(Integer, string)
|
GetImage |
Returns an image and its type.
|
GetImageAlternate |
Returns an image and its type. Currently this method is the same as GetImage for all images except SVG. For SVG images, xlsx files store both a PNG and SVG image. In those cases, this method will return the SVG image. To get the PNG, call GetImage |