Search found 2 matches
- Wed Jul 20, 2022 12:54 pm
- Forum: VCL
- Topic: TChart Editor save & restore custom themes
- Replies: 3
- Views: 5087
Re: TChart Editor save & restore custom themes
Hi Yeray, Yes, I have read the article. Thanks. What I am looking for is what custom theme was selected by the user in the TChart editor and then apply that theme to the chart. I could not find the answer to that question in the article you suggested, and this may be my lack of knowledge with TChart...
- Mon Jul 11, 2022 7:36 pm
- Forum: VCL
- Topic: TChart Editor save & restore custom themes
- Replies: 3
- Views: 5087
TChart Editor save & restore custom themes
Hello, We use the TChart editor to allow our users to change the theme as follows: Procedure TForm1.ChangeTheme; var tmpClass:TChartThemeClass; begin tmpClass:=TChartThemeClass(ChartThemeSelector(Chart)); ChartThemeIndx := ChartThemes.IndexOf(tmpClass); //Save ChartThemeIndex … When The user execute...