charts

Implementing Google Analytics in Asp.net mvc

I want to integrate Google analytics in my asp.net mvc application. So im doing some R&D for it to find out which one is the better. I find out a Google Analytic Dashboard Controls which are available at http://gadashboardcontrols.codeplex.com/ But they are server control and im not sure how to implement in asp.net mvc. Secondly can...

Some good controls and examples to chart functions

Some good controls and examples to chart functions I am looking for some examples of plotting functions with some code and seeing that on a chart so If I had a function like y=x^2+2 I want to see that plotted from say 0 to some really high number. C# (WPF in VS 2010 maybe) would be ideal or if their is some other library that work...

Hide legend of WPF Toolkit chart with more than one data series.

I am trying to use charts from the WPF Toolkit (with LineSeries) and I don't want a legend at all. I need this since I have 10 such charts each with data from a different source and I would like to draw one legend for all 10, to save screen real estate. By default the legend appears the moment you add a second LineSeries. Is there any...

Change margin around plot area and title in WPF Toolkit chart

I am using the Chart control of WPF Toolkit February 2010 release. The chart takes up lots of space relative to the plot area. How do I control the margin around the plot area and title of the chart. This way, I can arrange the 10 charts I need in a grid without having to use so much space on the screen. Thanks, sprite. ...

Highcharts - animations other than the default

Is there an option in Highcharts JS (highcharts.com) to change the animation when a chart loads? Right now, on a column chart, the columns slide up from the bottom. Is it possible to alter the default animation to, say, bounce? ...

[DOJO] Mixed Charting DATA sources in the same CHART

Hi all, I'm new in DOJO and I post here for the first time. I have a problem to create several lines on the same chart. I've done a simple test to simulate data and it works dojo.require("dojox.charting.Chart2D"); makeCharts = function(){ //crée un nouvel objet graphique var chart1 = new dojox.charting.Chart2D("simplechar...

Can we do Yield curves using Adobe Flex ?

I want to create Yield curves using adobe flex. pls, any one have an Idea how to create yield curves in a chart using flex... ...

DOJO chart AJAX url

I don't know why my code doesn't work. I want to get in the same chart different lines which have different url sources. function recupereData(url){ var retourVar = ""; dojo.xhrGet({ url: url, handleAs: "json", load: function(data){ retourVar = data; } ...

Flex Chart Axis style: what is this style called?

Hi Guys, I'm having difficulty with Flex charts. I'm working on a complete rewrite of a flex app that has a fair bit of charting involved, and I've been instructed to get the look and feel as close to the previous version as possible (for the initial release). I can't seem to find the style property which dispays a blue, tabbed sort of...

WPF LineSeries ItemsSource from Class Tree Walk Error

ERROR: "Cannot modify the logical children for this node at this time because a tree walk is in progress." I call the Chart.Load() sub on the Load of my main form. I know that this has been asked before but I cannot for the life of me get this to work. I need the chart series to update if the underlying data changes, if there is anoth...

Two LineSeries with the same Y Axis in WPF Toolkit charts.

I want to do the following with the WPF toolkit charts: I have two line series that should use the same y axis (i.e I want them both to be on the same scale). I could give each of them the same axis definition so they would overlap (and then have one of them with collapsed visibility), but that is not my best choice. This is the solut...

Stacked Bars with GChart

I'm trying to create a stacked bar using GChart (http://code.google.com/p/clientsidegchart/?redir=1). I can't believe that it won't work with Google's own Chart API =) Thanks! ...

Creating Images in WPF without XAML and dispaying

I am trying to create a WPF Chart in c# code and saving it to file without displaying it on screen. This will be in a WCF Service where data is sent to the service, an image is created and and path to the image is returned. So far I have got the image to save to file and the data on the X & Y axis is displayed but the columns on the gra...

how to have gantt chart using python or pyqt

hello , im working on a (asset management) system to handle assets , resources and progress of tasks i want to have a gantt chart in my system im using python 2.6 and pyqt . is there any (already made charts python library ) ? that can work well with pyqt. or should i make a custom widgets for this ? please advice. thanks in advance...

Flot - Column charts, series aligned together

Can I plot charts like this http://developer.yahoo.com/yui/examples/charts/charts-rotation.html using flot ? I mean, I have two series with the same values on the x axis, I want to show them aligned together like in the example above, Flot plots them one above the another. Any ideas ? ...

can I pass the Array values (not the array collection values) to the Bar charts or column charts using flex 3.5

Is there anyway where I can pass the Array values (not the array collection values) to the Bar charts or column charts using flex 3.5... here is the thing i want::: I have array values like this,, array1 = [23, 49, 40, 239, 20, 80, 39,49,120, 24, 31,41]; and i want to show these values on the Yaxis and months on Xaxis.... -- I ha...

Plot stacked chart with javascript with negatives values.

I need to plot this with javascript (excel chart): http://pontt.com/plotexcel.jpg (bar below the x-axis and bar above the x-axis). Anyone know of a javascript library (except google charts) that supports stacked bar charts with negative values and the plot just as excel? I tried several libraries, but I had no success in trying to plot...

Display months in xAxis with Dojo

Hi all, I have this data : { "identifier": "id", "idAttribute":"id", "label": "date", "items": [ { "id":1, "name":"index", "point":[{"id":1,"num":17, "date":"2009-02-01"}, {"id":2,"num":10, "date":"2009-06-01"} ]}, { "id":2, "name...

Need to create a log-prob chart in .NET

I can create a chart with a logarithmic scale on one axis, but I need to have a probability scale on the other axis as well. Thanks in advance. ...

Draw on CartesianDataCanvas item that larger than the chart

Hi Community, I want to draw on a Flex AreaChart. This AreaChart has an AnnotationElement that is an CartesianDataCanvas. When I draw some items on this CartesianDataCanvas, the chart looks good when the item fits inside the chart. But when I draw an item that is bigger than the chart, the chart automatically resize and try to fit my it...