문제

How Can I Change DBChart.Series.Marks.Font RunTime? I want to assign it a component font like a label font directly:

DBChart1.Series[0].Marks.Font := Label1.Font;

It is a TTeeFont Class Font. how can i cast my standard fonts?

도움이 되었습니까?

해결책

You can assign the font for instance by using Assign method:

DBChart1.Series[0].Marks.Font.Assign(Label1.Font);
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top