Members  Example 
ThemeManager Class
Provides automatic themeing of SciChart.Charting.Visuals.SciChartSurface via the Theme property.
Allowable themes include:
  • BlackSteel
  • BrightSpark
  • Chrome
  • Electric
  • ExpressionDark
  • ExpressionLight
  • Oscilloscope
  • SciChartv4Dark
Object Model
ThemeManager ClassIThemeProvider Interface
Syntax
[Extension()]
public static class ThemeManager 
Example
Demonstrates how to apply themes to elements within SciChart in XAMLDemonstrates how to apply themes to elements within SciChart in Code
<!-- where xmlns:s="http://schemas.abtsoftware.co.uk/scichart" -->
<s:SciChartSurface s:ThemeManager.Theme="BlackSteel">
   <!-- omitted for brevity -->
</s:SciChartSurface>
            
<!-- and xmlns:s3D="http://schemas.abtsoftware.co.uk/scichart3D" -->
<s3D:SciChart3DSurface s:ThemeManager.Theme="Chrome">
   <!-- omitted for brevity -->
</s3D:SciChartSurface>
var sciChartSurface = new SciChartSurface();
ThemeManager.SetTheme(sciChartSurface, "BlackSteel");
Inheritance Hierarchy

System.Object
   SciChart.Charting.ThemeManager

Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also