Questions tagged [aspchart]

24 questions
4
votes
0 answers

Change asp chart legend label width

Aspx
Nishantha
  • 6,065
  • 6
  • 33
  • 51
3
votes
1 answer

ASP:Chart number localised formatting without changing culture

I have an ASP:Chart control in a web application (ASP.Net). They are used to display some basic accounting information, like so: However, I want to be able to change the decimal separator to a comma, for display in other countries that used the…
Mansel
  • 63
  • 7
3
votes
0 answers

Minor and Major Tick Mark Label format on Ms Chart

This is my first attempt at trying to use .net Chart Control and I am trying to achieve some specific Axis label format pattern. I have a two Line series that have common X-Primary axis and it is of DateTime data type. I am tyring to Show days of…
blowingwind
  • 31
  • 1
  • 5
2
votes
1 answer

Unable to use asp Chart on CodeBehind

I'm trying to use the asp:Chart control provided with visual studio (2015) to create charts in my page. But for some reason, i'm not able to configure the chart itself on the Code Behind page (for example trying to setup the DataSource for the…
gui2
  • 51
  • 8
2
votes
1 answer

Change an .asp.net chart label to value and then format only chart, not legend

I have a pie chart in .asp.net called chrt. I would like the values instead of the labels to show up in the chart with currency formatting. I want the labels to show up in the legend. I do the following and get Values shown on my chart instead of…
John Wesley Gordon
  • 910
  • 2
  • 17
  • 39
2
votes
1 answer

How to display Error message into chart in asp chart controls

I have a chart where I have to display message as "No Data Present",when rows.count == 0 else the bar chart as usually. May i know how to display that message. Thanks in advance.
Chow.Net
  • 593
  • 6
  • 13
  • 25
1
vote
0 answers

When 2 lines on ASP:Chart have the same values, is there a way to see both lines?

I have an ASP:Chart that has 2 lines. Light Green for average Dark Green for highest value Some months, there is just one data point, so the high = average. When this happens on the chart, you can only see one line color. Is there a trick to get…
1
vote
0 answers

asp:Chart stacked bar chart weird overlays

I have an asp:Chart that I'm populating using c#. See below: protected void populateBarChart() { int userDeptId = int.Parse(Session["userDept"].ToString()); DateTime? selectedDate = null; string query = "SELECT *…
Aiden Dipple
  • 134
  • 2
  • 15
1
vote
1 answer

ASP.net chart control - XValueMembers Count

This is the first time I use chart control in ASP.net I did the binding between the chart and a datatable to show the stats of revenue per date Although, When the selected dates are more than 9, the chart stops displaying them all on the X axis It…
HelpASisterOut
  • 3,085
  • 16
  • 45
  • 89
1
vote
2 answers

ASP.NET Chart Click, Pass Data and in New Tab

I am trying to get an asp.net chart and it's legend to allow me to open up another page in another tab passing the values of the piece of the chart I clicked on with it. I have been able to get it to open up another tab when clicking on the chart…
John Wesley Gordon
  • 910
  • 2
  • 17
  • 39
1
vote
2 answers

Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index

I have a bar chart which has different series .Each series has to point different page. I am giving URL.I got this error. Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index …
Chow.Net
  • 593
  • 6
  • 13
  • 25
1
vote
1 answer

X-Axis with Asp:Chart

I have an asp:chart with one serie in it. The serie has a collection of 13 points. (1 to 13) When the data is binded to the chart with the Visual Web Designer data binding tool, I want to see even the columns that won't receive any data. (x Columns…
phadaphunk
  • 12,785
  • 15
  • 73
  • 107
1
vote
1 answer

Adding tabular values along with the legends in asp.net chart controls

I am stuck in preparing some chart control in the format we required. I have added the asp chart control in to my asp.net application, Where the X and Y values in the chart are displaying correctly, when i pass some values. Right now I want to…
0
votes
1 answer

ASP.NET Chart Error

On a page (I've called Cashflow.aspx) I have an asp.net chart to plot out some data. It works wonderfully when debugging on my local machine. However, when I try to deploy the site to my staging server there is an error that I can't seem to track…
mac
  • 485
  • 1
  • 6
  • 29
0
votes
1 answer

How to make asp .net chart (with even handling) size responsive

I am using asp .net chart control to create bar chart`. My aspx page does not allow me to set width of in percentage (if set in percentage, it gives error at run time saying it can only be set in pixels). I am handling click event on my chart…
Sumi Sharma
  • 51
  • 1
  • 7
1
2