chart

.Net Charting - switching display order of bar charts

Using System.Web.UI.DataVisualization.Charting, I've got data I want to represent as a Bar chart with the first item at the series displaying at the top of the chart, rather than the bottom. E.g. for a series with labels {"A", "B", "C"}, the bar for C will display at the top, while I would want A to be the top bar. This ordering makes se...

How to create trendline using adobe flex

I have a bubble chart where i need to draw a trendline on that showing the trend. I have Months on X axis and values (intergers or numerics) on y axis. I have gone through this link http://stackoverflow.com/questions/43224/how-do-i-calculate-a-trendline-for-a-graph , but i'm not able to understand what to use x-axis value and y- axis va...

Line Graph in windows form app in vb.net

Hi, using vs2008 I am trying to create a line graph using vb in a windows form. I have dragged a chart onto the form, and via the properties window, through the series option have changed the type to the graph that I want, which is line. But all the time the data is displayed as a simple bar chart. How do I remedy this please to get the ...

Microsoft Chart Controls compiles to C# exe but won't run

I'm building an exe file using Microsoft Visual C# and I've installed Microsoft Chart Controls as an add-on. But whenever I try to run the exe on a different computer, it won't even open and it just crashes. I've tried creating the exe using both 2008 and 2010 editions. The problem is that the other computer doesn't have Microsoft Chart ...

Looking for Pivot Chart capability similar to Excel's PivotChart

I am looking for a .NET pivot charting component that is similar to Excel's PivotChart. This component would be used to display data to users as part of a smart client. Users may wish to slice and dice the data in a variety of ways. Ideally, the PivotChart component would allow the user to select a variety of ways to group and aggregate ...

Need to create ChartObject in PowerPoint based on the C# chart control

Hello! I'm creating a variety of graphs within my application which are based on the .Net Chart control (using System.Windows.Forms.DataVisualization.Charting). What I'm trying to do is to allow users to copy these charts to Power Point in the "native" format, i.e. to enable them to paste special in PP and see "Microsoft Office Graphic ...

Equivolume financial chart in Matlab

Can't find anywhere a Matlab code to plot Equivolume bars, does anybody knows how to? http://www.armsinsider.com/education/armsonthemarket/equiv_chart.asp Thanks, Alberto ...

WPF Chart Legend Item Style

Hello, I am trying to style the Legend Items in my WPF Chart. I have the following LegendStyle, but this doesn't change anything. What am I doing wrong? Thanks! <Style x:Key="LegendStyle1" TargetType="{x:Type datavis:Legend}"> <Setter Property="ItemContainerStyle"> <Setter.Value> <Style TargetType="charting:Leg...

What do I use to display CSV data as a chart?

I have a set of data stored in text files, which I have now via Perl put into a CSV file. The data in question now needs to be displayed in a chart. What suggestions do you have for doing this? XML was suggested, but XML can't put the data into a chart itself. Ideally what would happen is: the data would be decoded from the text file, ...

Not all labels on x-axis are showing in sql server 2008 report

Here is my problem. The bar chart report is showing data on x and y axis (y axis has 3 fields - min, max, avg values for time frame) and x axis has task type. For some reason, the chart only shows task types on the x-axis for some apparently interval, even though I have no interval set expressly. Any ideas? ...

AddSeries parameters

Hi, I try hard to get some functional charts with dojo... I want to create a stacked area chart with 3 lines. For the "bas", "moy" and "haut" as you see in the JSON data. var jStore = {"identifier":"mois", "items":[{"mois":1, "bas":98, "moy":122.5, "haut":147}, {"mois":2, "bas":91, ...

How to refresh WPF chart I'm using to display some data (WPF toolkit chart)

How do you update a WPF chart when the collection changes? I am using WPF chart (System.Windows.Controls.DataVisualization.Toolkit.dllversion version 3.5.50211.1) to plot some simple data. The classes for the data look like this: public class EngineMeasurementCollection : Collection<EngineMeasurement> { } public class EngineMeasure...

the labelrenderer of the time axis in extjs

Note: This is a cross post at:extjsForum since I got no answer there,so I ask here. Anyone who decide to answer this post can see the forum first to make sure if the question has been answer. :) The following is my core code to make a Column chart to show the visitors and bytes of my website, however I found that I can not handle the ...

Flex DateTimeAxis: Displaying dates in another timezone (neither local nor UTC)

Hi, I'm working with an AreaSeries + DateTimeAxis in Flex 4. The dates for the time axis originate from a server in another time zone. I'd like to see the graph (in my local time zone) displayed using the server's time zone. I know that I can set the DateTimeAxis.displayLocalTime property to true or false, to have dates displayed in the...

Birt - times along the xaxis

I have a chart with time along the x-axis. I want the points on the x-axis to be relative to their actual place in time not equidistantly spaced according to the number of points - is there any way to do this? Thanks Dan ...

How to create limit marker lines in Silverlight 4 Chart

Hello, I'm creating LineSeries Sivlerlight chart to display changes of the system performance in real time. The Y coordinate is numeric performance value, X is the date when this value was retrieved. I need to add line that would represent upper limit for those values that are considered to be normal, so the user can easily see what l...

Retrieve Value on Mouse Click for WPF Column Series

I have a simple chart with two column series containing all months in the year. I want to filter a list view that show detailed information for the selected month. I can capture the event via MouseDown on the ColumnSeries but I'm not sure how to get to the month in the column series. <DVC:ColumnSeries Title=" Expenditures" Independent...

How to access chart in PowerPoint via VSTO

I am trying to access charts in slides in PowerPoint 2007 via VSTO, and I am a bit confused. While the Interop provides a property Shape.HasChart which properly finds shapes that have/are charts, I can't figure out how to access the Chart itself. I don't see a chart property on the Shape. Am I supposed to cast the Shape to a specific typ...

ASP.NET Third party chart for showing live data

Hi, We are building a financial web application which requires a real time chart. Initially an empty chart will be shown to the customer with X-Axis from 08:00 to 18:00 with a gap of 2 hours, i.e 6 points. The Y-axis should be adjusted based on the price between these timings. Now, from 08:00 the client(browser) will send a JSON/Ajax re...

BIRT - how can you set the title of a chart programmatically

I would like to be able to set the title of the chart I am creating in BIRT through a Java program. How do I do this? Many thanks Daniel ...