UNPKG

devextreme

Version:

HTML5 JavaScript Component Suite for Responsive Web Development

39 lines (32 loc) 1.06 kB
/** * DevExtreme (viz/themes.d.ts) * Version: 21.1.4 * Build date: Mon Jun 21 2021 * * Copyright (c) 2012 - 2021 Developer Express Inc. ALL RIGHTS RESERVED * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/ */ /** * Gets the current theme's name. */ export function currentTheme(): string; /** * Changes the current theme for all data visualization UI components on the page. The color scheme is defined separately. */ export function currentTheme(platform: string, colorScheme: string): void; /** * Changes the current theme for all data visualization UI components on the page. */ export function currentTheme(theme: string): void; /** * Gets a predefined or registered theme's settings. */ export function getTheme(theme: string): any; /** * Refreshes the current theme and palette in all data visualization UI components on the page. */ export function refreshTheme(): void; /** * Registers a new theme based on the existing one. */ export function registerTheme(customTheme: any, baseTheme: string): void;