In Delphi I can set Styles (ProjectOptions -> Application -> Appearance -> CustomStyles) .
For example if I set it to style "Amakrits" then the UI has a black theme, the TListboxes and Memo's background are black.
But the TChart background remains white.
Is there a way that TChart adapts its style automatically to the Delphi style?
If not, I can set the TChart colors manually. But how can I find which exact colors Delphi used in a certain style?
Custom Styles
Re: Custom Styles
Hello,
You can assign the current style as follows:
You can assign the current style as follows:
Code: Select all
uses VCLTee.TeeThemes;
Code: Select all
TSystemTheme.ApplyStyle(Chart1);
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |