Question

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?

Was it helpful?

Solution

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

DBChart1.Series[0].Marks.Font.Assign(Label1.Font);
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top