sets the active skin
skin | string | the name of the skin. The allowed values are: "terrace", "dark", "material", "contrast-white", "contrast-black", "meadow", "skyblue", "broadway" |
gantt.setSkin("dark");
If the method is called after a gantt is initialized, it will trigger the render method.
If called before initialization, the method will have the same effect as the assignment of the gantt.skin
property:
gantt.skin = "dark";
added in v9.0
Back to top