New to Kendo UI for VueStart a free 30-day trial

Defines the interface of an object that listens to changes on an OptionsStore.

Definition

Package:@progress/kendo-drawing

Methods

Called when an option changes.

Parameters:changeOptionsChange

Detailed information for the change.

Example:
ts
import { OptionsStore, OptionsChange } from '@progress/kendo-drawing';

class Observer implements OptionsObserver {
  optionsChange(change: OptionsChange) {
    console.log(change.field, change.value);
  }
}

const options = new OptionsStore();
options.observer = new Observer();

options.set('foo', 'bar');
In this article
DefinitionMethodsoptionsChange
Not finding the help you need?
Contact Support