Search found 2 matches

by Dave C.
Wed Jul 20, 2022 12:54 pm
Forum: VCL
Topic: TChart Editor save & restore custom themes
Replies: 3
Views: 3557

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...
by Dave C.
Mon Jul 11, 2022 7:36 pm
Forum: VCL
Topic: TChart Editor save & restore custom themes
Replies: 3
Views: 3557

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...