Say I've created a theme like this. I've named it ChartTheme_Normal
. I apply it to a ThemeManager
object like this:
ThemeManager themeManager = new ThemeManager();
themeManager.addTheme(this, R.style.ChartTheme_Normal);
At that point, how do I go from there to adding it to the SciChartSurface
I have?
SciChartSurface
has a applyThemeProvider(IThemeProvider)
method, but it requires an IThemeProvider
and it looked like you could avoid using that if you made the theme in styles.xml
and used ThemeManager
.
If my understanding of themes in SciChart is completely off, please correct it if you're able to. I'm not familiar with this.