asp.net-charts

ASP.Net Charts LabelURL

I've got some graphics working with the MS Asp.Net Chart controls, I noticed the labels have a label URL property, If I put a URL in there then it makes that label a link. My question is, is it possible to have the label URL be dynamic for each entry in the graph for example I have a graph plotting how many tasks are outstanding for eac...

Chart Control Multiple ChartArea's, Same Table

I've got a table with three columns, the latter two with values in them. I'm trying to output two pie charts displaying the data for each one. For some reason, the second pie chart isn't displaying, instead it's coming up as a gray square. Additionally the legend is appearing twice consecutively, but it's only a single legend which ma...

ASP.Net Charts - Obtaining via jQuery on IE 7 causes the image not to load

I am using the ASP.Net Charting Controls and ASP.Net MVC. I am trying to have a chart displayed on a page, the user can change various data associated with this chart and then press a button which will perform a POST operation and then return a newly rendered chart. This is refreshed via jQuery which loads a partial view containing th...

Determine the colours used by the ASP.NET Chart control

I'd like to find out which colours are used for a particular pallette in the ASP.NET Chart control. I already know there is an enum on the Chart class to set the palette, e.g. myChart.Palette = ChartColorPalette.Berry; But I'd like to know which colours belong to the palette. Before anyone asks - as I know you will - the reason I ne...

Is there an Excel Chart Object to System.Windows.Forms.DataVisualization.Charting converter around?

Does anyone know if there is a tool that allows you to convert an Excel Chart object to an System.Windows.Forms.DataVisualization.Charting object (aka ASP.NET Charts) e.g. in C# using System.Windows.Forms.DataVisualization.Charting; ... var xlChart = xlWorksheet.ChartObjects.FirstOrDefault(); Chart chart = SomeConverterLibrary.Conve...

ASP.NET Chart Control too slow or doesn't render

I have a web page rendering two pie charts using the ASP.NET 3.5 chart controls. On my dev server (IIS 5.1) the charts load well. On the QA server, the charts load pretty slowly and sometimes one or both of them doesn't even load. I am loading the charts using the codebehind tag. Is there anything else that could be done to make these...

Styling the asp.net charting controls

Using the ASP.Net Chart Controls, which are a subset of the Dundas Chart Controls, How can I make charts that look like this: Instead of this: EDIT: I've made some progress, since asking this question. The styling elements that improve the default graph in both Dundas and MSChart are: Round Corners on the chart container Backgro...

Displaying ASP.NET Chart controls in ASP.NET MVC site with virtual path

I have a simple project that combines ASP.NET MVC with ASP.NET Charts control. Code is super simple and works IF I do not specify any "Virtual Path" when I run it in VS 2008. I followed Mike Ceranski post on his blog here: http://www.codecapers.com/post/Build-a-Dashboard-With-Microsoft-Chart-Controls.aspx But, if I put a virtual path (i...

How to prevent ASP.NET Chart Control images from being indexed?

I have some pages on my public website that display charts generated by ASP.NET Chart controls. How can I prevent them from being indexed by Google and other search engines? ...

Microsoft Chart Control - Big Red X (bad) whenever I use financial formulas

I discovered Microsoft's .Net charting controls from another post here, and so far I love them. For anyone needing it, here is the link: http://code.msdn.microsoft.com/mschart I do everything during runtime, such as creating series and slapping them on a chart area. I can successfully create a Candlestick chart, by supplying it with an ...

How to use BinaryStreaming rendertype in ASP.Net Charting control using ajax call in ASP.Net MVC framework.

Can anybody give a code snippet which will explain how to use Binary streaming render type in ASP.Net Charting controls using $.ajax call in ASP.Net MVC Framework. ? Ajax call will look like this--> $.ajax({ type: "POST", url: "/DrawChart/" + drawingParamter1+ "/" + drawingParamter2, dataType: someSuitableD...

ASP.NET Charting Control Transparency

I'm working with the ASP.NET Charting Library and I've got it generating a pie chart but I'm having a problem configuring it to generate the pie chart with semi-transparent slices. If you look at the image you'll see what I'm talking about. Of the 4 pie charts the top 2 and the bottom left chart have the pie slice transparency I'm talkin...

ASP:Chart control - databind pie chart from datatable

Hi folks, I've got a datatable with two columns "Status" (string) and "Total" (integer). Status Total Success 34 Missing 2 Failed 10 I want to databind this into a pie chart with each Status per slice but I'm not sure what method of data binder is required? Thanks, Jonesy ...

ASP.NET chart controls - how do i create this bar chart?

Hi folks, Got a chart control i wanna make from a data table. the table looks like this: the chart i want will look like this: ''' '''' ''''' '' ' ''''' '' ' ECCTMP ECCTMP ECCTMP Monday Tuesday Wednesday hope this makes sense for each day its grouped b y the type (email, calls). I'm just n...

MS Chart control - Optimize method for displaying 'zero' Y value columns for a Line chart type

I’m using Microsoft Chart extensions that ship with VS 2010. This suits my needs well, but I’ve run into an annoyance and am looking for a more elegant solution. When charting a line graph, to achieve a continuous line, I require data for all X coordinates. My dataset is for number of sales by employee by month, where sales count is o...

ASP.NET Chart Control Formatting

I need help trying to style the asp.net chart control. I have a doughnut chart that I need to style: The background of the doughnut to be transparent so the underlying gradient shows through. I'd like to move the legend to the bottom below the chart ... that way I can make a tall/thin chart This is what it currently looks like. And I...

Default 3D chart transparency with ASP.NET Chart Control?

Hello, like two guys before me there and second one there I have difficulty with 3D chart. How to force them to be transparent like this picture: taken from 3D Area chart example shipped with ASP.NET Chart controls. This chart has ChartColorPalette.BrightPastel pallete, but is transparent. I have also 3D chart with ChartColorPalette...

ASP.NET Chart Control - 3D Stacked Step pie.

Does anybody know, how to make chart like this? I have not found any way how to stack 3D pie charts. Stacking seems to me available only with Stacked Bar, 100% Stacked Bar, Stacked Column, and 100% Stacked Column. This is example from ASP.NET Chart Control examples gallery, but this one is without any code behind ... The only way ho...

Create XY Scatter in ASP.NET

Hi - I have two arrays of data that I would like to display in an XY scatter. I've downloaded the ASP.NET libraries and am wondering how to display the data. This is as far as I've gotten on the front end and was wondering if anyone has suggestions on what the next steps would be (i.e. how do I bind the array data to the x and y axes?) ...

adjusting the xy axis in asp.net point chart

How do you adjust the formatting of the asp.net point chart? I'd like to dynamically set maximum and minimums based on data in a List<>. I'd also like to figure out the properties that allows me to tweak the intervals within each of the axes and also formatting the labels so that I can change decimals to percentages. ...