Hello,
I would like to change a theme during runtime in Angular 4.
I have included an additional theme in the cli.json:
"styles": [
"…/node_modules/font-awesome/css/font-awesome.css",
"…/node_modules/devextreme/dist/css/dx.spa.css",
"…/node_modules/devextreme/dist/css/dx.common.css",
"…/node_modules/devextreme/dist/css/dx.light.css",
"styles.css",
"generic.light.custom.css",
Works good.
But how to change the themes during runtime?
I have played with
DevExpress.ui.themes.current('dx-light');``````but could not find the imports.
Thank you!