documentReady(callback: Function): void
DOMが完全にロードされたときに実行する関数を指定します。
A function to execute after the DOM is ready.
getExtender(owner: Control, id: string): Object
指定されたオーナーを持つエクステンダを取得します。
getExtenders(owner: Control, type?: any): Object[]
指定されたオーナーを持つエクステンダを取得します。。
たとえば、次のコードは、FlexChartのインスタンスであるchart1からすべてのLineMarkerエクステンダを取得します。
var lineMarkers = c1.getExtenders(chart1, wijmo.chart.LineMarker);
メモ:typeが渡されない場合、これはオーナー内のすべてのエクステンダを返します。
The Control who has the extender.
The extender's type. It is optional.
getService(id: string): Object
指定されたキーに従ってサービスのインスタンスを取得します。これまで、 RemoteCollectionViewおよびPivotEngineサービスを返すことができました。
次に例を示します。
// IDが「uicollectionview」であるCollectionViewオブジェクトを取得します。
var cv = c1.getService('collectionview1');
The service id.
C1コントロール、関連する関数およびクラスを定義します。