Gets the active chart element.
Syntax
[JavaScript]
FpSpread1.GetActiveChart();
Parameters
-
None
Return Type
Element, chart image
Remarks
This method gets the active chart.
Example
This is a sample that contains the method. On the client side, the script that contains the method would look like this:
JavaScript | Copy Code |
---|---|
<SCRIPT> function moveSelection() { var ret = FpSpread1.GetActiveChart(); } </SCRIPT> |