There are four skins available for TreeView:
| dhx_skyblue | dhx_web | 
             
         | 
        
             
         | 
    
| dhx_terrace | dhx_material | 
             
         | 
        
             
         | 
    
Related sample:  Skyblue skin
Related sample:  Web skin
Related sample:  Terrace skin
Related sample:  Material skin
The skin will be detected automatically, depending on the attached CSS. You can also set it manually:
// api initialization
var myTreeView = new dhtmlXTreeView({
     skin: "dhx_web"
});
 
// or via the setSkin() method
myTreeView.setSkin("dhx_web");
			Back to top