Theming in WPF Olap Grid
6 May 20211 minute to read
Theming is the process of applying particular settings to the visual elements of a control. This feature provides the following themes options:
- Default
- Blend
- Metro
- Office2010Blue
- Office2010Black
- Office2010Silver
- Office2013LightGray
- Office2013DarkGray
- Office2013White
- VS
The VisualStyle
property allows you to set a theme for the OLAP grid control. The following code sample demonstrates how to add theming to the OLAP grid control.
<syncfusion:OlapGrid x:Name="olapGrid" VisualStyle="Transparent"/>
this.olapGrid.VisualStyle = OlapGridVisualStyle.Transparent;
A sample demo available in the following location.
{system drive}:\Users\<User Name>\AppData\Local\Syncfusion\EssentialStudio\<Version Number>\WPF\OlapGrid.WPF\Samples\Appearance\Visual Styles