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

OptionsObserver

Updated on Oct 14, 2025

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

See OptionsStore

Methods

optionsChange

Called when an option changes.

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');
Parameters

change

OptionsChange

Detailed information for the change.

In this article
Methods
Not finding the help you need?
Contact Support