Nevron Forum
Back
Login
Register
Login
Register
Home
»
Nevron Vision for NET
»
Nevron Chart for .NET
»
Set Hand Cursor for Legend Item
Set Hand Cursor for Legend Item
Post Reply
Set Hand Cursor for Legend Item
View
Flat Ascending
Flat Descending
Threaded
Options
Subscribe to topic
Print This Topic
Goto Topics Forum
Author
Message
Alexander Haberl
Alexander Haberl
posted 4 Years Ago
ANSWER
Topic Details
Group: Forum Members
Posts: 15,
Visits: 48
I cannot set a Hand Cursor for an automatic LegendItem. Is this possible?
I tried this approach (the changing of the Font to an underlined Font works):
private void ChartControl_MouseMove(object sender, MouseEventArgs e)
{
NHitTestResult res = null;
try
{
res = HitTest(e.X, e.Y);
}
catch (Exception)
{
}
if (null != res)
{
if (res.ChartElement == ChartElement.LegendDataItem)
{
for (int i = 0; i < Charts.Count; i++)
{
foreach (NSeriesBase s in Charts[i].Series)
{
NSeriesLegend seriesLegend = s.Legend;
seriesLegend.TextStyle.FontStyle.Style = FontStyle.Regular;
}
}
res.LegendDataItem.TextStyle.FontStyle.Style = FontStyle.Underline;
res.LegendDataItem.InteractivityStyle.Cursor.Type = CursorType.Hand;
resetLegend = true;
Refresh();
}
else
{
if (resetLegend)
{
for (int i = 0; i < Charts.Count; i++)
{
foreach (NSeriesBase s in Charts[i].Series)
{
NSeriesLegend seriesLegend = s.Legend;
seriesLegend.TextStyle.FontStyle.Style = FontStyle.Regular;
}
}
Refresh();
resetLegend = false;
}
}
}
}
Tags
Cursor
Interactivity
Legend
Reply
Like
0
GO
Merge Selected
Merge into selected topic...
Merge into merge target...
Merge into a specific topic ID...
Open Merge
Threaded View
Threaded View
Set Hand Cursor for Legend Item
Alexander Haberl
-
4 Years Ago
Hi Alexander, Generally, you should not modify the attributes of...
Nevron Support
-
4 Years Ago
Post Reply
Similar Topics
Post Quoted Reply
Reading This Topic
Login
Login
Remember Me
Reset Password
Resend Validation Email
Login
Explore
Messages
Mentions
Search