/*! * * Wijmo Library 5.20252.44 * https://developer.mescius.com/wijmo * * Copyright(c) MESCIUS inc. All rights reserved. * * Licensed under the End-User License Agreement For MESCIUS Wijmo Software. * us.sales@mescius.com * https://developer.mescius.com/wijmo/licensing * */ /** * {@module wijmo.knockout.chart.finance} * KnockoutJS bindings for wijmo.chart.finance module */ /** * */ export declare var ___keepComment: any; import { WjBinding, WjContext } from 'wijmo/wijmo.knockout.base'; import { WjFlexChartBaseBinding } from 'wijmo/wijmo.knockout.chart'; /** * KnockoutJS binding for the {@link FinancialChart} control. * * Use the {@link wjFinancialChart} binding to add {@link FinancialChart} controls to your * KnockoutJS applications. For example: * *
<p>Here is a FinancialChart control:</p>
* <div data-bind="wjFinancialChart: { itemsSource: data, chartType: 'Candlestick' }">
* <div data-bind="wjFlexChartLegend : {
* position: 'Top' }">
* </div>
* <div data-bind="wjFinancialChartSeries: {
* name: 'close',
* binding: 'high,low,open,close' }">
* </div>
* </div>
* </div>
*
* The wjFinancialChart binding may contain the following child bindings:
* {@link wjFlexChartAxis}, {@link wjFinancialChartSeries}, {@link wjFlexChartLegend}.
*
* The wjFinancialChart binding supports all read-write properties and events of
* the {@link FinancialChart} control, and the additional tooltipContent property
* that assigns a value to the FinancialChart.tooltip.content property.
* The selection property provides two-way binding mode.
*/
export declare class wjFinancialChart extends WjFlexChartBaseBinding {
_getControlConstructor(): any;
_initialize(): void;
}
/**
* KnockoutJS binding for the {@link FinancialChart} {@link FinancialSeries} object.
*
* The {@link WjFinancialChartSeries} binding must be contained in a {@link wjFinancialChart} binding.
*
* The WjFinancialChartSeries binding supports all read-write properties and events of
* the {@link FinancialSeries} class. The visibility property provides two-way binding mode.
*/
export declare class wjFinancialChartSeries extends WjBinding {
_getControlConstructor(): any;
_createWijmoContext(): WjContext;
}
export declare class WjFinancialChartSeriesContext extends WjContext {
_initControl(): void;
}