Change style of hover series on legend
Posted: Thu Nov 03, 2016 1:47 pm
Hello,
I want to put the series bold flew into legend, but the Legend->Selected->Hover->Font->Style property is ignored.
How to do ?
Thank you
I want to put the series bold flew into legend, but the Legend->Selected->Hover->Font->Style property is ignored.
Code: Select all
void __fastcall TscrTestGraphe::Button3Click(TObject *Sender)
{
TChart * Chart1 = new TChart(this);
Chart1->Parent = this;
Chart1->Align = alClient;
Chart1->Legend->Selected->Hover->Font->Style = Chart1->Legend->Selected->Hover->Font->Style << fsBold; //This code has no effect
Chart1->AddSeries(new TPointSeries(Chart1))->FillSampleValues();
}
Thank you