Questions tagged [aspchart]
24 questions
0
votes
1 answer
Store results of subtracting 2 series Y values, as new series
I have a chart with two series that share the same X axis values. I want to subtract the Y values and create a new series.
There are two ways I've tried so far:
Convert the points on the chart and put them into an array and subtract them:
…

Sewder
- 754
- 3
- 11
- 37
0
votes
2 answers
How to change name of the series in ASP.net chart Control
I am using ASP.net Chart control to get the chart. below code which give me correct chart. I want to change my series name dynamically. Right now i hard coded it as d.VENDOR_CODE . I want my name of the series will be the d.VENDOR_CODE which I am…

sony921
- 109
- 13
0
votes
1 answer
Cache settings for binding data to asp.Chart from stored procedure
i have the specific trouble while binding data from stored procedure to my asp:chart in MS Visual Studio 2010. Unfortunately I wasn't able to find any answer online so I will be really greatful if someone here would be able to help.
I have a…

duwen_blade
- 33
- 1
- 1
- 7
0
votes
1 answer
A chart element with the name 'John' already exists in the 'SeriesCollection'
I am following this post, to build a bar chart and show on my webpage. Below is the code i have done to accomplish it:
SqlConnection con = new SqlConnection(ConfigurationManager.ConnectionStrings["DefaultConnection"].ConnectionString); …

HarshSharma
- 630
- 3
- 9
- 34
0
votes
1 answer
Displaying Total Records in ASP.NET PieChart on ToolTip
I displayed the percentage in ASP.NET Chart Control(PieChart).. But, When my mouse hovers on the chart, It has to Show the total Values instead of percentage value.. I tried several thing, but the Chart accepts only X and Y axis parameters, so my…

Manikandan Krishnamoorthy
- 531
- 2
- 4
- 22
0
votes
1 answer
Asp Chart - Dealing with Missing X Axis Values
I have a asp.net chart which plots Hourly data on X axis. However, sometimes the data been binded does not contain data on weekends. So after Fri 11 pm, the next data is Mon 00:00 am. But asp chart still plots all the slots between Fri 11 pm till…

devSuper
- 295
- 1
- 4
- 18
0
votes
1 answer
Error while creating asp:Chart
I am trying to create Chart with 2 series and 2 ChartArea.
I have following code:
protected void DisplayData()
{
var surveyResult = SurveyResult.ListSurveyResult(this.SurveyID);
for (int i = 0; i < surveyResult.Count; i++)
{
…

coder
- 658
- 3
- 14
- 31
0
votes
1 answer
Asp.net Charts Line Style
I've been trying this for a while but I can not remove these lines or change their color: image

kintaro
- 2,393
- 2
- 16
- 16
0
votes
1 answer
Set no-repeat to backimage in Asp:Chart
I am using asp:Chart control. It's property BackImage works fine.
But I am getting 2 errors to set the background image.
Unable to set no-repeat property of BackImage.
How to pass URL of image in BackImage property

Shailesh
- 492
- 3
- 9
- 27