/*! * * Wijmo Library 5.20251.40 * 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.interaction} * KnockoutJS bindings for wijmo.chart.interaction module */ /** * */ export declare var ___keepComment: any; import { WjBinding } from 'wijmo/wijmo.knockout.base'; /** * KnockoutJS binding for the {@link RangeSelector} control. * * Use the {@link wjFlexChartRangeSelector} binding to add {@link RangeSelector} controls to your * KnockoutJS applications. For example: * *
<p>Here is a RangeSelector control:</p>
 * <div data-bind="wjFlexChart: { itemsSource: data, bindingX: 'country' }">
 *     <div data-bind="wjFlexChartAxis: { wjProperty: 'axisX', title: 'country' }"></div>
 *     <div data-bind="wjFlexChartSeries: { name: 'Sales', binding: 'sales' }"></div>
 *     <div data-bind="wjFlexChartSeries: { name: 'Expenses', binding: 'expenses' }"></div>
 *     <div data-bind="wjFlexChartSeries: { name: 'Downloads', binding: 'downloads' }"></div>
 *     <div data-bind="wjFlexChartRangeSelector: { seamless: 'true',rangeChanged: rangeChanged }"></div>
 * </div>
* * The wjFlexChartRangeSelector binding supports all read-write properties and events of * the {@link RangeSelector} class. */ export declare class wjFlexChartRangeSelector extends WjBinding { _getControlConstructor(): any; } /** * KnockoutJS binding for the {@link ChartGestures} object. * * Use the {@link wjFlexChartGestures} binding to add {@link ChartGestures} controls to your * KnockoutJS applications. For example: * *
<p>Here is a ChartGestures:</p>
 * <div data-bind="wjFlexChart: { itemsSource: data, bindingX: 'country' }">
 *     <div data-bind="wjFlexChartAxis: { wjProperty: 'axisX', title: 'country' }"></div>
 *     <div data-bind="wjFlexChartSeries: { name: 'Sales', binding: 'sales' }"></div>
 *     <div data-bind="wjFlexChartGestures: { scaleX:0.5, posX:0.1 } "></div>
 * </div>
* * The wjFlexChartGestures binding supports all read-write properties and events of * the {@link ChartGestures} class. */ export declare class wjFlexChartGestures extends WjBinding { _getControlConstructor(): any; }