[Bug?] Setting cursor to crHandPoint does not work
Posted: Mon Sep 17, 2018 7:14 am
I try to set the cursor to crHandPoint when the mouse moves over the chart:
However, the mouse will briefly change to crHandPoint then it will immediately return to crDefault.
--------
Update:
Also this will not work:
Code: Select all
void __fastcall TForm3::Chart1MouseMove(TObject *Sender, TShiftState Shift, int X, int Y)
{
Chart1->Cursor=crHandPoint;
}
--------
Update:
Also this will not work:
Code: Select all
void __fastcall TForm3::btnTestClick(TObject *Sender)
{
Chart1->Cursor=crHandPoint;
}