igniteui-angular-charts
Version:
Ignite UI Angular charting components for building rich data visualizations for modern web apps.
34 lines (33 loc) • 1.51 kB
JavaScript
/*
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
https://www.infragistics.com/legal/license/igultimate-la
https://www.infragistics.com/legal/license/igultimate-eula
GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
*/
import { DependencyObject } from "igniteui-angular-core";
import { INotifyPropertyChanged_$type, PropertyChangedEventArgs, markType } from "igniteui-angular-core";
import { PropertyUpdatedEventArgs } from "igniteui-angular-core";
/**
* @hidden
*/
export let ColorScale = /*@__PURE__*/ (() => {
class ColorScale extends DependencyObject {
constructor() {
super(...arguments);
this.propertyChanged = null;
this.propertyUpdated = null;
}
l(a, b, c) {
if (this.propertyChanged != null) {
this.propertyChanged(this, new PropertyChangedEventArgs(a));
}
if (this.propertyUpdated != null) {
this.propertyUpdated(this, new PropertyUpdatedEventArgs(a, b, c));
}
}
k(a, b, c, d) {
}
}
ColorScale.$t = markType(ColorScale, 'ColorScale', DependencyObject.$, [INotifyPropertyChanged_$type]);
return ColorScale;
})();