Search found 19 matches

by Priyanka
Fri Jun 10, 2016 10:42 am
Forum: .NET
Topic: Bottom and Custom Vertical Axis Label Start Position
Replies: 35
Views: 44706

Re: Bottom and Custom Vertical Axis Label Start Position

Hi Christopher, Thanks. I will take a look at tutorials again. I would like to know the label value format which supports decimal and negative values. Currently I am using "##0.##;{##0.##}". However, it is showing wrong format in case of negative values. i.e. for value -500 chart is showing {500}. P...
by Priyanka
Thu Jun 09, 2016 12:03 pm
Forum: .NET
Topic: Bottom and Custom Vertical Axis Label Start Position
Replies: 35
Views: 44706

Re: Bottom and Custom Vertical Axis Label Start Position

Hi Christopher, In the earlier trend image Y-axis is showing minimum value as 500. Even if I have set it to 0.3 in code. I am expecting Y-axis should be started from 0.3 (min) to 7500 (no issue with max value it is setting correctly). Basically I don't want chart to auto calculate values based on sc...
by Priyanka
Thu Jun 09, 2016 9:23 am
Forum: .NET
Topic: Bottom and Custom Vertical Axis Label Start Position
Replies: 35
Views: 44706

Re: Bottom and Custom Vertical Axis Label Start Position

Hi Christopher,

Actually I am reading minimum and maximum value from database. So I need to pass that value instead of calculating it. Please suggest.

Also, like to know how to increase image (exporting chart to png format) resolution. How to store the chart/image in database?
by Priyanka
Thu Jun 09, 2016 4:52 am
Forum: .NET
Topic: Bottom and Custom Vertical Axis Label Start Position
Replies: 35
Views: 44706

Re: Bottom and Custom Vertical Axis Label Start Position

Hi Christopher, Attached is the output of the code shared by me. Not sure why the below code is not working in case of custom vertical axis WebChart1.Chart[0].CustomVertAxis.Automatic = false; WebChart1.Chart[0].CustomVertAxis.SetMinMax(0.3, maxvalue); Also, need inputs on setting chart resolution a...
by Priyanka
Wed Jun 08, 2016 7:06 am
Forum: .NET
Topic: Bottom and Custom Vertical Axis Label Start Position
Replies: 35
Views: 44706

Re: Bottom and Custom Vertical Axis Label Start Position

Hi Christopher,

Any updates on the issue?
by Priyanka
Tue Jun 07, 2016 11:48 am
Forum: .NET
Topic: Bottom and Custom Vertical Axis Label Start Position
Replies: 35
Views: 44706

Re: Bottom and Custom Vertical Axis Label Start Position

Hi Christopher,

Please taka a look in the attached code.

Appreciate quick help.
by Priyanka
Mon Jun 06, 2016 8:41 am
Forum: .NET
Topic: Bottom and Custom Vertical Axis Label Start Position
Replies: 35
Views: 44706

Re: Bottom and Custom Vertical Axis Label Start Position

Hi Christopher, SetMinMax function doesn't work. Below is the code I am using. However, it is not setting minimum to 0.2 and maximum to 200. WebChart1.Chart[0].CustomVertAxis.Automatic = false; WebChart1.Chart[0].CustomVertAxis.SetMinMax(0.2, 200); WebChart1.Chart[0].CustomVertAxis.Labels.ValueForma...
by Priyanka
Thu Jun 02, 2016 9:41 am
Forum: .NET
Topic: Bottom and Custom Vertical Axis Label Start Position
Replies: 35
Views: 44706

Re: Bottom and Custom Vertical Axis Label Start Position

Thanks Christopher. I will try it.

Need your help to implement requirement of showing blank report. As per attached screenshot. We need to draw series for some date range and rest should be blank.
by Priyanka
Wed Jun 01, 2016 9:13 am
Forum: .NET
Topic: Bottom and Custom Vertical Axis Label Start Position
Replies: 35
Views: 44706

Re: Bottom and Custom Vertical Axis Label Start Position

Hi Christopher,

I think you got confused. I need top and bottom border to only chart area.

Thanks.
by Priyanka
Tue May 31, 2016 6:29 am
Forum: .NET
Topic: Bottom and Custom Vertical Axis Label Start Position
Replies: 35
Views: 44706

Re: Bottom and Custom Vertical Axis Label Start Position

Thanks Christopher.

It removed extra borders. However, I need top and right border to only chart area as attached.
by Priyanka
Mon May 30, 2016 7:07 am
Forum: .NET
Topic: Bottom and Custom Vertical Axis Label Start Position
Replies: 35
Views: 44706

Re: Bottom and Custom Vertical Axis Label Start Position

Hi Christopher,

I have requirement to disable anti aliasing. I have tried below code.

WebChart1.Chart.Aspect.SmoothingMode = System.Drawing.Drawing2D.SmoothingMode.None;

However, it is not working in my case. Please assist.

Thanks in advance.
by Priyanka
Thu May 26, 2016 9:10 am
Forum: .NET
Topic: Bottom and Custom Vertical Axis Label Start Position
Replies: 35
Views: 44706

Re: Bottom and Custom Vertical Axis Label Start Position

Hi Christopher,

I tried it but no luck.
by Priyanka
Wed May 25, 2016 1:00 pm
Forum: .NET
Topic: Bottom and Custom Vertical Axis Label Start Position
Replies: 35
Views: 44706

Re: Bottom and Custom Vertical Axis Label Start Position

Hi Christopher,

Thanks. It solved both issues :)

Need your inputs on removing the border (bottom line) marked in attached screenshot (Trend_chart1). We need the border to just chart area as attached in screenshot (Trend_chart2)
by Priyanka
Mon May 23, 2016 5:16 am
Forum: .NET
Topic: Bottom and Custom Vertical Axis Label Start Position
Replies: 35
Views: 44706

Re: Bottom and Custom Vertical Axis Label Start Position

Hi Christopher, Not sure which code you are referring. However, I had attached code with the below method implemented. I assume this is what you also suggested to fix this issue in other post. private void WebChart1_BeforeDrawAxes(object sender, Graphics3D g) Attached again the file with the code re...
by Priyanka
Thu May 12, 2016 10:37 am
Forum: .NET
Topic: Bottom and Custom Vertical Axis Label Start Position
Replies: 35
Views: 44706

Re: Bottom and Custom Vertical Axis Label Start Position

Hi Christopher,

Please find attached code for your reference. Also, can you check the issue of displaying 0 value on Y-axis.

Thanks