Nevron Forum
Back
Login
Register
Login
Register
Home
»
Nevron Vision for NET
»
Nevron Chart for .NET
»
Adding min max labels on y axis
Adding min max labels on y axis
Post Reply
Adding min max labels on y axis
View
Flat Ascending
Flat Descending
Threaded
Options
Subscribe to topic
Print This Topic
Goto Topics Forum
Author
Message
Manal Goyal
Manal Goyal
posted 7 Years Ago
ANSWER
Topic Details
Group: Forum Members
Posts: 29,
Visits: 405
Hi Team,
I want to add min, max labels on y axis to highlight minimum and maximum values achieved by the series. What I managed to come up with is this:
You can see that labels are inside the graph, but I want labels to be present on the scale itself(But the important thing is that I don't want labels to interfere with the tick values, they can appear next to tick values).
This is the code I am currently using:
private void AddMinMaxLabel(NAxis axis, double min, double max)
{
NAxisConstLine constLine1 = new NAxisConstLine
{
StrokeStyle = { Color = Color.Gray },
Value = min,
TextAlignment = ContentAlignment.MiddleLeft,
Text = " Min " + min.ToString("0.000")
};
constLine1.TextStyle.FontStyle.Style = FontStyle.Bold;
NAxisConstLine constLine2 = new NAxisConstLine
{
StrokeStyle = { Color = Color.Gray },
Value = max,
TextAlignment = ContentAlignment.TopLeft,
Text = " Max " + max.ToString("0.000")
};
constLine2.TextStyle.FontStyle.Style = FontStyle.Bold;
axis.ConstLines.Add(constLine1);
axis.ConstLines.Add(constLine2);
}
Can you guide me for the right way to do it?
Thanks and regards
Manal
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
Adding min max labels on y axis
Manal Goyal
-
7 Years Ago
Hi Manal, You can use custom value labels for this purpose: NChart...
Nevron Support
-
7 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