UNPKG

scichart

Version:

Fast WebGL JavaScript Charting Library and Framework

13 lines (12 loc) 475 B
import { IThemeProvider } from "./IThemeProvider"; /** * The interface for types which are Themeable in SciChart - High Performance Realtime * {@link https://www.scichart.com/javascript-chart-features | JavaScript Charts} */ export interface IThemeable { /** * Applies a theme (defined by {@link IThemeProvider}) to the current element * @param themeProvider The theme data to apply */ applyTheme(themeProvider: IThemeProvider): void; }