Web Forms :: How To Create Charts
Apr 21, 2014how to display survey questions Chart?
View 1 Replieshow to display survey questions Chart?
View 1 RepliesHow to create charts of MIS using vs20005 and sql2005?
View 9 RepliesI want to create pie chart to Show the Percentage of students who have not paid fee, i am Getting the Record of all these students in GridView and also want to create pie chart.
View 1 RepliesI want to develope charts for weather forecast sources like scadar,historical,weather and static data. Does anybody worked for these type of weather forecasting charts. what type of charts we can use for weather forecast? data will be in xml format. If user selects any datefrom and dateto, time interval according to that selection charts will be shown.
View 2 RepliesHow to create GeoMap charts in asp.net C#?
I want to create a GeoMap chart in my website in which i can Navigate to the Customize tab, where i can modify the color that appears on your map, etc.
Has anyone had any success creating GANTT charts using MS chart controls?
View 1 RepliesI am trying to render the context of an usercontrol to a PDF. The usercontrol contains som charts (default asp.net charts):
[Code]....
But sometimes I am getting an error when myUsercontrol.RenderControl(hw) "error executing child request for chartimg.axd.". I am not getting this error all the time. Sometimes it generates the PDF but then there is missing af chart (Missing image).
I want to display the multiline chart for comparing two or more employee attendance in asp.net ... I am trying but I didn't get exact solution ....
View 1 RepliesHow to make stylish charts in VS2010 or VS2008.
View 1 Repliesgroup my chart which is being bind to a datasource, to be group according to years.
View 1 RepliesI'm trying to combine two charts ( Column & Spline ) using MS Charts 3.5. When i run the page the second series of the Spline chart is not visble/working.
Here is the code
string connectionString2 = "server='myserver'; user id='testuser'; password= est'; database='DBs'";
System.Data.SqlClient.SqlConnection sqlConnection2 = new System.Data.SqlClient.SqlConnection(connectionString2);
string queryString2 = "SELECT TOP 10 NAME, VOLUME, CLOSE FROM Com WHERE NAME IN ('LEAD')";
[Code].....
I have some difficulty in binding my database with bar charts/line charts/pie charts. Anyone knows how to do it?
View 3 RepliesI need to create a website that analyze a SQL database with Chart; I have some application that modify the database, and i want to show the changes in another application using a Chart.
View 2 Repliesi am using .net framework 3.5 and visual studio 2008, i want to develope an application
for graphs and charts, so charting control 3.5 i am using.
i want to add multiple series of charts on a same chart which are at different location.How can i do it?
I have to display text values dynamically on Y-axis of a bar graph in Dunda charts.
Like Region 1, Region2 .....................
how can I do that?
There are dynamic values on x axis which can range from 1-100. I need to increase the size of X-Axis when the range is high, so as to display the data properly.
View 1 RepliesI need to export a few (could be just one or more than one) Microsoft Charts to a PDF and Excel. It needs to happen on a button click and the charts should be directly exported to a PDF without getting rendered onto a web page.
Environment used: ASP.NET
Question: Anybody has experience with ZedGraph / MS-Chart controls ?
I am thinking about which to use ?
Basically, I have a tendency to ZedGraph, because I need .NET framework 2.0 while MS-Chart is 3.5 (and I don't know how well a 3.5 assembly works on 2.0) and because I could use it privately, too (I use Linux privately).
But I don't know if MS-Charts offers more. Does ZedGraph for example offer reasonable quality 3d piecharts ?
And reasonable color design, like gradient colors ? And if it does, is it as simple (or nearly as simple) as MS-Chart controls ? And does ZedGraph offer databinding, e.g. a datatable from a database ?
Is it possible to put flex charts in a asp.net application?
Any other easy to use chart controls, but fancy looking ?
Zoom option in azax line chart control.
View 1 Replies I wanna know if it's possible to make dynamic charts with Reports (not crystal reports) of VS2005 in asp.net+vb.net. My boss want me to make a chart within a report and be able to click a bar and go to another report or subreport of that particular bar of the chart.
Right now I know how to make a chart with the report but it's static.
I'm using the Microsoft Chart control to put a couple of charts on a web page. If you render 2 charts, the resulting HTML is something like this (the table is mine, the img and map are from the MS Chart):
<table id="chart">
<tr>
<td id="rolling">
<img src="/ChartImg.axd?i=chart_45ec7063132a47d9bf08ce377f4d6030_0.png&g=d82064ecb0cf459dbda23039ae0c3f70" alt="" usemap="#ImageMap" style="height:200px;width:250px;border-width:0px;" />
<map name="ImageMap" id="ImageMap">
<area shape="rect" coords="190,112,242,132" title="$321.01" alt="" />
<area shape="rect" coords="59,69,111,132" title="$1,017.92" alt="" />
<area shape="rect" coords="138,104,190,132" title="$449.04" alt="" />
<area shape="rect" coords="7,25,59,132" title="$1,714.59" alt="" />
</map>
</td>
<td id="highrisk">
<img src="/ChartImg.axd?i=chart_45ec7063132a47d9bf08ce377f4d6030_1.png&g=6f876c9016cd4b72b5ba60609b9d05ec" alt="" usemap="#ImageMap" style="height:200px;width:250px;border-width:0px;" />
<map name="ImageMap" id="ImageMap">
<area shape="rect" coords="190,128,242,132" title="41" alt="" />
<area shape="rect" coords="59,131,111,132" title="6" alt="" />
<area shape="rect" coords="138,25,190,132" title="922" alt="" />
<area shape="rect" coords="7,121,59,132" title="100" alt="" />
</map>
</td>
</tr>
</table>
Note that both charts use the same name for the image map for each chart - "ImageMap" - and it uses the coords from the first chart on the subsequent charts, even though it puts different titles on each element.
Am I doing something wrong in trying to render 2 charts on 1 page? Is there a workaround for this?
I am curious how to display many charts in one aspx file or cshtml or html file. like I use one aspx file to make one chart. and then i have lots of such aspx files which give me many charts. how can I combine them in one page?
View 4 RepliesI have a view ..
[code]....
in "GetChartData" method which is in controller.. I set data in sessions.. for example..
[code].....
then when I load page.. I get all the same chart for each row. i think may be the last chart is overlapping all the previous charts.
I can't seem to find the property that controls visibility of labels in pie charts. I need to turn the labels off as the information is available in the legend.
I tried setting the series labels to nothing Chart1.Series[i].Label = string.Empty; but the labels seem to show up anyway.