Method Name |
Parameters |
Description |
FCSetDataURL
(dataURL:String):void |
dataURL:String |
This function updates widget XML from a file and renders the widget. The URL of the file is passed as a String parameter - dataURL. |
FCSetDataXML
(strXML:Sting):void |
strXML:String |
This function updates widget XML from a string and renders the widget. The XML is passed as String parameter is passed as the parameter - strXML. |
FCRender():void |
|
This function renders a widget. It can also update a widget after new widget data is set using FCData(), FCSetDataXML(), FCSetDataURL() methods or using FCDataURL, FCDataXML properties. |
FCPrintChart():void |
|
This function prints the widget. |
FCGetAttribute
(attributeName:String):String |
attributeName:String |
This method returns the value of an attribute specified by the parameter. |
FCGetCSVData():String |
|
This function returns tha widget data as CSV string. |
FCGetSignature():String |
|
This function returns the version of the widget being used. |
FCGetXMLData():String |
|
This function returns the XML data of the widget as a string. |
FCExportChart(type:String, fileName:String):void |
type: String
fileName: String |
This method calls the widget export routine for saving the widget as PDF/image. Parameters may be passed to override the export parameters initially specified by the XML. |
FCFeedData(strData:String):void |
strData:String |
This method feeds real-time data to widget using Flex. The data has to be in the same format as provided by real-time data provider page. |
FCGetData():Number |
|
This method gets the data of the widget. |
FCSetData(value:Number):void |
|
This method sets the data of the widget. |
FCStopUpdate():void |
|
This method stops the widget from self-updating itself. |
FCRestartUpdate():void |
|
If you've stopped the update of the widget, you can resume the update with the help of this method. |
FCClearLog():void |
|
This method clears all data in the message logger. |
FCHideLog():void |
|
This method hides the message logger data. |
FCShowLog():void |
|
This method shows the message logger data. |
FCShowAnnotation
(annotationId:String):void |
annotationId:String |
This method shows the annotation with the specified identifier. |
FCHideAnnotation
(annotationId:String):void |
annotationId:String |
This method hides the annotation and the specified identifier. |