active questions tagged charting - Stack Overflowmost recent 30 from stackoverflow.com2009-12-04T17:52:43Zhttp://stackoverflow.com/feeds/tag/chartinghttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1841756/php-charting-library0PHP charting libraryFred2009-12-03T18:03:29Z2009-12-03T20:24:38Z
<p>I'm looking for a PHP chart library, with a few specific criteria:</p>
<ul>
<li>I can't use Google charts because, in at least one case, I need to be able to run on a private network with no internet access (ergo no Google).</li>
<li>I need to be able to produce bitmapped images (png, etc). SVG would also be nice, and Flash is acceptable as an extra, but the static bitmapped images are necessary (so a completely Flash chart would be unusable).</li>
<li>Open source preferred but commercial is acceptable.</li>
</ul>
http://stackoverflow.com/questions/1644150/asp-net-charting-control-dynamically-adding-and-removing-series-of-datapoints1ASP.NET Charting Control - Dynamically Adding and Removing Series of Datapointsphyllis diller2009-10-29T14:31:54Z2009-12-02T20:52:22Z
<p>If you're familiar with ASP.NET's Charting controls, the Chart object contains a number of Series objects - which are series of datapoints that can be charted. Each series can be visualized in a different way (bar or point or line) on the same chart.</p>
<p>I have a custom control that I use to create and remove and modify lists of Series in a UI. Upon clicking a button, the chart is created using those Series. If I try to re-display the chart, however (even with identical Series) it blows up and throws a NullReferenceException. </p>
<p>Here's the relevant code - I've got an object wrapping Series (because I have some custom properties in there)</p>
<pre><code>public class DataSeries
{
private Series _series = new Series();
... (bunch of other properties)
public Series Series
{
get { return _series; }
set { _series = value; }
}
}
</code></pre>
<p>In the control itself, I store a list of these as a property(I only create the object during non-postbacks because I want the list to persist):</p>
<pre><code>private static List<DataSeries> seriesList;
public List<DataSeries> ListOfSeries
{
get { return seriesList; }
set { seriesList = value; }
}
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
seriesList = new List<DataSeries>();
}
}
</code></pre>
<p>Then I have some amalgam of controls that I can use to add new DataSeries, remove them, and modify their properties. That all works.</p>
<p>When they click 'Create Chart' on the page, this is the code that gets executed:</p>
<pre><code>protected void refreshChart(object sender, EventArgs e)
{
chart.Series.Clear();
foreach (DataSeries s in seriesControl.ListOfSeries)
{
string propertyName = s.YAxisProperty;
//List of data to display for this series
List<Sampled_Data> sampleList = Sample.GetSamplesById(s.ComponentId);
foreach (Sampled_Data dSample in sampleList)
{
//GetPropertyValue returns a float associated with the propertyname
//selected for displaying as the Y Value
s.Series.Points.AddY(BindingLib.GetPropertyValue(dSample, propertyName));
}
chart.Series.Add(s.Series);
}
}
</code></pre>
<p>The first time I execute that piece of code, it works like a charm.
The second time I click on the button that executes 'refreshChart,' I get a NullReferenceException because the value of 's.Series.Points' is null. And I can't create a new object of the type that the Points property is - its constructor is private or protected.</p>
<p>If I'm not manipulating the Points property between subsequent calls of this function, why is it becoming null? </p>
<p>There are maybe a few solutions I could think of - make DataSeries inherit series instead of have one - then likely I could new the Points property if the error still persists. I could also deep copy the ListOfSeries and see if that solves my problem. I could also perhaps shove all my custom attributes into the Series object - it has a customfields property (or something similarly named). If I'm not passing around an object wrapping another one, that might eliminate the issue.</p>
<p>Any ideas why this might be occurring and how it might be solved?</p>
http://stackoverflow.com/questions/1828428/how-do-i-show-only-the-graph-of-a-chart-no-legend-no-title-minimum-space-used1How do I show only the graph of a chart (No Legend, No Title, Minimum Space Used) in Silverlight 3.0?Evildonald2009-12-01T19:48:35Z2009-12-01T22:12:57Z
<p>I'm writing a Silverlight application that is showing a pie chart of completed items as an item in a DataGrid. I currently can get the graph to show as an item in the DataGrid using a DataGridTemplateColumn.</p>
<p>My problem is the grid blows out the height of the data row because it has a title and a legend and a lot of allocated whitespace around it. I JUST want to show the pie chart only, with no extra padding or information.</p>
<p>I have found a few convoluted styling ways to do this but they seem to throw syntax errors (perhaps they are Silverlight 2.0 solutions?) </p>
<p>Does anyone have a working way of doing this in Silverlight 3.0?</p>
<p>thanks in advance!</p>
http://stackoverflow.com/questions/1051877/ruby-on-rails-what-reporting-and-or-charting-tools-are-available4Ruby on Rails: What Reporting and/or Charting Tools Are Available?Mark Brittingham2009-06-27T01:09:38Z2009-12-01T20:08:04Z
<p>I'm just starting out with Ruby/Rails and am wondering what Rails developers use to provide reports and/or charts on Rails sites. In ASP.NET I use the tools from DevExpress but I don't know enough about the Rails ecosystem to know what is available. Any insight would be appreciated.</p>
http://stackoverflow.com/questions/1164261/trend-lines-in-asp-net-charting-controls0Trend Lines in ASP.NET Charting Controlsregan2009-07-22T10:08:31Z2009-12-01T11:58:54Z
<p>Any idea on how to produce a trend line in ASP.NET Charting Controls, i dont want the trend line based on time periods so i am guessing that the finacials stuff isnt useful in this case.</p>
http://stackoverflow.com/questions/1823884/generate-image-with-microsoft-net-chart-controls-library-without-control0Generate Image with Microsoft .NET Chart Controls Library without Controldewald2009-12-01T03:50:25Z2009-12-01T06:09:09Z
<p>Is it possible to generate images (jpeg, png, etc) using the Microsoft Chart Controls library without instantiating a WinForm or ASP.NET Control class? All the examples I have seen utilize a control component. I need to create a library which contains simple methods that take data to be plotted and returns a new chart image. Examples:</p>
<pre><code>public byte[] GeneratePlot(IList<SeriesData> series)
{
// generate and return JPEG
}
public void GeneratePlot(IList<SeriesData> series, Stream outputStream)
{
// generate JPEG and write to stream
}
</code></pre>
<p>If it is not possible:</p>
<ol>
<li>would you recommend
creating/disposing a new chart
control each time the user calls the
GeneratePlot() method?</li>
<li>is there
another .NET library (preferably
free) that you would recommend?</li>
</ol>
<p>Thanks</p>
http://stackoverflow.com/questions/1813097/hide-weekends-on-wpf-toolkit-chart0Hide weekends on WPF toolkit chartAlexandra2009-11-28T17:12:20Z2009-11-30T15:59:12Z
<p>I am making a small app that plots financial price data and since the finance markets are closed on the weekends, I have no data for those days. By default the chart, found in the new WPF Toolkit, shows a large gap between Friday and following Monday and this behaviour is not acceptable. I am trying to figure out a way to "hide" the weekend gaps but can't seem to find any good solutions. So far, I figured that I would have to overload the standard <code>DateTime</code> struct (how?) which will be able to recognize and skip weekends and holidays. I am looking for suggestions and/or pointers before I start down that slippery slope.</p>
<p>Some more details:</p>
<p>I am given a wide range of data - currently daily closing prices on NYSE. I am using the <code>DayTimeAxis</code> to plot the independent variable of <code> LineSeries</code> which is of type <code>DateTime</code>. It currently simply plots all the prices, one day at a time - and that's where the devil is, it shows wider gaps due to lack of data for Saturdays and Sundays and some major holidays.</p>
<p>I will eventually have to show more detailed (hourly, minute) chart once data becomes available, but the problem will remain if the user will want to view hourly data for some Friday and the following Monday.</p>
http://stackoverflow.com/questions/1794883/add-chart-data-from-other-workbooks-into-one-series-with-vba-excel-20070Add Chart Data from other Workbooks into one series with VBA - Excel 2007Rob A2009-11-25T05:37:40Z2009-11-29T19:45:51Z
<p>Hi All,</p>
<p>I need to create a Chart which will grab data from external sources when a macro is run. Setting up the UserForm and all that is fine, all done, however I cant find out how to add another piece of the series.</p>
<p>Is it even possible to have a series that sources data from several different locations? Basically I need it to go in chronological order (Horizontal Axis are all dates), but each date comes from a different workbook entirely... I have tried to get Excel to do this with its basic functions, I just cant get it to put it into the graph! If possible, I would like to to not have to copy all the reference data to the workbook with the graphs, as it is already going to have 16+ Charts that will be on their own sheet.</p>
<p>Does anyone know how to make Excel accept many different references into one series? And how it would be done with VBA? Im not too bad with VBA, just havent had to deal with Charting before... Any help would be greatly appreciated!!</p>
<p>Thanks,</p>
<p>Rob.</p>
http://stackoverflow.com/questions/1812174/f-charting-example2F# charting examplePeter2009-11-28T10:18:36Z2009-11-29T07:02:46Z
<p>I would like to do some basic charting in F# using build in features or a free library.
And I would be very very pleased with a very basic example of it, a pie chart if possible. </p>
<p>Example data : </p>
<pre><code>[("John",34);("Sara",30);("Will",20);("Maria",16)]
</code></pre>
<p>Where the ints are percentages to be represented in the pie. </p>
<p>I have recently installed VSLab and though I find a lot of 3D examples, I am only looking for a simple pie chart...</p>
<p>It is also fine to use excel features by the way, not free, but installed nevertheless..</p>
http://stackoverflow.com/questions/1809017/labels-below-xaxis-at-flex-barchart0labels below xAxis at flex barChartpszemo2009-11-27T14:13:26Z2009-11-27T14:13:26Z
<p>Hi,
I would like to customize labels below xAxis at bar chart - have long (4-5 words) names and would like to display them next below previous.
Is it possible?</p>
<p>Regards,
pszemo</p>
http://stackoverflow.com/questions/1795836/determine-the-colours-used-by-the-asp-net-chart-control0Determine the colours used by the ASP.NET Chart controlMoose Factory2009-11-25T09:54:09Z2009-11-25T09:58:17Z
<p>I'd like to find out which colours are used for a particular pallette in the ASP.NET Chart control.</p>
<p>I already know there is an enum on the Chart class to set the palette, e.g.</p>
<pre><code>myChart.Palette = ChartColorPalette.Berry;
</code></pre>
<p>But I'd like to know which colours belong to the palette.</p>
<p>Before anyone asks - as I know you will - the reason I need to know the colours is because I want to create my own legend outside of the chart image.</p>
<p>I also know that I can set my own colours on the DataPoints for the chart, but I'd rather not have to implement my own palette.</p>
http://stackoverflow.com/questions/667228/how-to-hide-datapoint-label-when-value-is-zero-in-a-stackedbar0How to hide datapoint label when value is zero in a StackedBarLittle JB2009-03-20T17:48:49Z2009-11-21T21:44:51Z
<p>I have a StackedBar which shows 5 values per bar, with the data value displayed in the middle of each block. So far, so good. However, when the value is zero, the value is still being displayed, which is messy when there are a lot of zeroes.</p>
<p>I would like to be able to hide the label for a zero. How can I do that?</p>
<p>(I presume I could do it the long way by reading the data row-by-row and building the graph step-by-step, but I would prefer to be able to just throw the query results at the control).</p>
http://stackoverflow.com/questions/1743212/wpf-3-axis-chart0WPF 3 Axis Chartcjibo2009-11-16T16:18:21Z2009-11-16T16:18:21Z
<p>Does anyone know of a good WPF based control for doing 3 Axis Plotting? Needs to be able to take possible 3600 points and create a 3D surface like a iso map.</p>
<p>Must take X, Y, and Z. NOTE: Must be performant because it has to run on low powered machines. </p>
http://stackoverflow.com/questions/1691176/how-do-i-use-gdi-to-change-the-color-of-a-line-when-it-overlaps-a-region0How do I use GDI+ to change the color of a line when it overlaps a region?David Lean2009-11-06T23:16:34Z2009-11-09T13:10:02Z
<p>I'm using .NET GDI+ to draw a wavy line on a chart. (think sharetrading)
I want it to change color if the line goes above 90% or below 10%. </p>
<p>Any tips on how to get the color to change?</p>
<p>My two ideas are:-
1. Create rectangles from 0%-10% & 90%-100% & somehow use them are a color clipping/transform region. is that possible if so how.
2. Use a Brush but these seem to be more of a gradient & not a definate color switch precicely at a value.</p>
<p>Are either of these viable? Is there a better way?</p>
http://stackoverflow.com/questions/1590389/exporting-combined-data-charts-to-a-single-pdf-from-a-asp-net-web-app1Exporting combined data/charts to a single PDF from a ASP.NET web appBobby Ketchum2009-10-19T18:46:52Z2009-11-07T19:17:14Z
<p>We have a ASP.NET C# web application and are trying to find a way to combine data/tables and charts that can be exported a single PDF.</p>
<p>Some things we're looking for...</p>
<ol>
<li>The ability to export a single PDF
that includes charts, tables, etc.</li>
<li>The ability to embed the report into
the web app</li>
<li>A good number of highly configurable
chart types</li>
</ol>
<p>Tools we have...</p>
<p>We have <a href="http://dotnetcharting.com/" rel="nofollow">.netCharting</a>, which has the option to display the embedded reports as PDF, but that's per chart, which would mean multiple PDFs for a page with multiple charts and no custom tables or anything included in that PDF. We do like the variety of chart types and the versatility to make more complex reports, though. .netCharting includes the charts we could use.</p>
<p>We also have <a href="http://www.logixml.com/products/ad-hoc-reporting.html" rel="nofollow">LogiXML Ad Hoc</a> reporting, which does allow you to combine different charts and data into a single, exportable PDF, but it doesn't offer very complex charts. Also, as far as I can tell, it doesn't allow you to dynamically display a report by passing parameters from your web app, which would be necessary.</p>
<p>We've considered trying to interact with Excel (through COM) on the server to produce what we need.</p>
<p>Are there any tools out there that combine the strengths of our existing tools?</p>
http://stackoverflow.com/questions/1362021/charting-library-for-flex2Charting library for FlexKezern2009-09-01T11:42:56Z2009-11-06T11:58:51Z
<p>I'm starting to develop a website with flex. I need a charting library. It's very important to have good looking and interactive charts. I have been testing charts included in flex builder and fusion charts for flex.
Does any body know any other charting library for flex? I don't mind the cost of the library. I prefer to pay and have a great chart.
Greetings</p>
http://stackoverflow.com/questions/1679581/which-software-can-generate-such-flow-chart0Which software can generate such flow chart?Roy2009-11-05T10:16:09Z2009-11-05T10:21:09Z
<p>Anybody have used such a software? Is there an open source equivilient? Thanks!</p>
<p><img src="http://www.infoq.com/resource/news/2009/08/pp-claims-guid/en/resources/GenevaP&P.jpg" alt="alt text"></p>
http://stackoverflow.com/questions/1565165/why-the-charting-dialogusing-plot-pack-in-iocomp-updating-is-not-correct0why the charting dialog(using plot pack in iocomp) updating is not correct?unknown (google)2009-10-14T09:19:18Z2009-10-16T01:01:33Z
<p>I develop a MFC dialog-based application in VC++6.0 which communicate with remote machines through UART port, data received should be displayed in charting control(plot pack). Because the amount of remote machines is determined at running time by user, so I create charting dialog dynamically with user setted amount of remote machines.
A tabCtrl is put on the main dialog(m_TabPlot), the amount of tabCtrl's items will be created when user determined amount of remote machines, define an pointer array pDlgPlotList[] to save the address of created charting dialogs. I create a dialog with dialog editor, and put the activeX control iplotX on the dialog which I named DlgPlot. just like this:</p>
<pre><code> CDlgPlot *pDlgPlot = new CDlgPlot;
pDlgPlotList[no] = pDlgPlot;
m_TabPlot.InsertItem(no, itemText);
pDlgPlot->Create(IDD_DLG_PLOT, GetDlgItem(IDC_TAB_PLOT));
CRect tabRect, itemRect;
int nX, nY, nXc, nYc;
m_TabPlot.GetClientRect(&tabRect);
m_TabPlot.GetItemRect(0, &itemRect);
nX=itemRect.left;
nY=itemRect.bottom+1;
nXc=tabRect.right-itemRect.left-1;
nYc=tabRect.bottom-nY-1;
pDlgPlotList[no]->SetWindowPos( &wndTop, nX, nY, nXc, nYc, SWP_SHOWWINDOW );
</code></pre>
<p>Communication with remote machines throung UART using MSCOMM activeX control, every time received data, add new point in Plot pack control using AddXY(x,y) function, I write AddXY() in OnComm() function of MSCOMM, but not in OnPaint() of CDlogPlot, so maybe this is the reason why my charting dialog updating is wrong.
when my app is running, the history curve cannot be shown if my app turned to background and turn back, except new data point added to m_Plot, or I click the activeX control then history curve can be shown. I'm sure the WM_PAINT message is received by DlgPlot(I use SPY++ to find what messages transfered), maybe I do nothing in OnPaint() function of DlgPlot? if so, what can I do in it?
your help will be appreciated!</p>
http://stackoverflow.com/questions/1557384/how-to-implement-a-seriesinterpolate-effect-for-a-new-flash-charting-library0How to implement a SeriesInterpolate effect for a new Flash charting library?marfarma2009-10-12T22:53:10Z2009-10-14T19:09:06Z
<p>I'm working with a hot new open-source Flash data visualization library (<a href="http://www.axiis.org" rel="nofollow">http://www.axiis.org</a>) It doesn't (yet) have a series interpolation effect, like the Adobe Flash Charting library does.</p>
<p>Can anyone point me at anything that would help me understand how to do it? I gather it involves applying a tween effect between the old-data sprite and the new-data sprite.</p>
<p>Since I've never done any data vis graphics work, I suspect that it may well be beyond me to implement -- but I'd rather not give up before at least looking into what's involved. </p>
http://stackoverflow.com/questions/1110105/financial-charts-in-net-best-library-to-display-a-live-streaming-1-min-stock-ch2Financial charts in .NET? Best library to display a live streaming 1-min stock chart?Gravitas2009-07-10T15:10:06Z2009-10-13T08:34:34Z
<p>We are using C# .NET.</p>
<p>We're looking for a method to display live streaming 1-min financial stock charts.</p>
<p>Need:
- Candlesticks
- Zoom/pan
- The chart scrolling in real time as it receives streaming data</p>
<p>Woud like:
- A method to print metadata on the chart (buy/sell points, etc)</p>
<p>We don't mind paying for it, so any recommendation goes!</p>
http://stackoverflow.com/questions/661639/java-graphing-libraries-for-web-applicattions0Java Graphing Libraries for Web Applicattions?Omar Kooheji2009-03-19T10:09:07Z2009-10-13T07:13:52Z
<p>I've been asked to enhance a JSP Application with (And I quote) "Some Sexy Graphs" I did a quick search on SO and came up with <a href="http://stackoverflow.com/questions/555804/real-time-java-graph-chart-library">this question</a> which mentions several graphing solutions, however given that this is a Web application I was wondering if there were any good graphing libraries that can render the graphs client side using JQuery or some such?</p>
<p>Otherwise, has anyone who has used JFreeChart to produce charts for the Web got any pointers.</p>
<p>This is the first time I've done Any JSP (I've done some Java and Have done a bit of ASP.Net) so Any pointers would be appreciated.</p>
http://stackoverflow.com/questions/1522914/is-zedgraph-library-development-still-active-if-not-are-there-any-open-source1Is ZedGraph library development still active? If not - are there any open source replacements?Miky D2009-10-05T23:29:28Z2009-10-07T09:22:44Z
<p>I'm about to start working on a new .NET project where I'm going to need to put real-time data from a hardware device on a chart and I was surprised to find out that <a href="http://zedgraph.org/wiki/index.php?title=Revision%5FHistory" rel="nofollow">ZedGraph development seems to have died out</a> (last activity on the wiki is noted in late 2007). Is that true?</p>
<p>If so, are there any good open-source replacements for ZedGraph for .NET? Or should I roll my own? I'm considering the Microsoft charting toolkit but I'm concerned that - as with the the other commercial solutions out there - I may hit a road block if I'm going to need any non-standard features (of which there may be a few).</p>
<p>I should add that I've used ZedGraph in the past and that my experience was pretty good with it.</p>
http://stackoverflow.com/questions/896553/dundas-vs-componentart-which-one-is-better1Dundas vs ComponentArt which one is betterBinoj Antony2009-05-22T06:09:51Z2009-09-24T07:29:32Z
<p>Planning to buy a charting solution (for ASP.NET), narrowed down to Dundas and componentArt.</p>
<p>Is there a feature comparison sheet, comparing these two components?</p>
<p>Has anyone used both of these and found any one of them to be better than the other?</p>
<p>I had used ComponentArt in a project before and was impressed with its 3d like color settings, dundas look bland comparitively...</p>
<p>[EDIT] - Want to use it on .net Framework 2.0</p>
http://stackoverflow.com/questions/1431800/architecture-for-chart-reuse0Architecture for chart reuse. Mingus Rude2009-09-16T08:58:11Z2009-09-19T15:34:00Z
<p>In the company that I work for we have several web-based applications that require charting of data in one form or another. We are therefore investigating different ways of reusing the efforts we put into providing charts. As far as we have come there seems to be an architectural divide in that we can either use the same charting components/libraries for each application (installing it on each server) or we can centralise the charting to a separate server and use it for all charting needs. </p>
<p>Obviously the second option would be more generic but I can also see that when the charting is decoupled from the data used there is more complexity added in sending the data back and forth as well as providing interactive charts (possibly).</p>
<p>Is there any best practise around that we should try and follow in a case like this?</p>
http://stackoverflow.com/questions/1422779/c-excel-working-around-maximum-series-size-on-chart7C#/Excel: Working Around Maximum Series Size On ChartVincent2009-09-14T17:02:35Z2009-09-15T15:41:02Z
<p>I need help programatically graphing more points than can fit in a single Excel series.</p>
<p>According to <a href="http://office.microsoft.com/en-us/excel/HP100738491033.aspx" rel="nofollow">http://office.microsoft.com/en-us/excel/HP100738491033.aspx</a> the maximum number of points displayable on an Excel 2007 chart is 256000. Given that each series caps out at 32000 points, 8 series are required to plot the full 256000 points. My customer requires plotting of maximum amount of points per chart due to the large data sets we work with.</p>
<p>I have moderate experience with C#/Excel interop so I thought it would be easy to programatically create a worksheet and then loop through each set of 32000 points and add them to the graph as a series, stopping when the data was fully plotted or 8 series were plotted. If colored properly, the 8 series would be visually indistinguishable from a single series.</p>
<p>Unfortunately here I am. The main problem I encounter is:</p>
<p><a href="http://img14.imageshack.us/img14/9630/errormessagen.png" rel="nofollow">(full size)</a>
<img src="http://img14.imageshack.us/img14/9630/errormessagen.png" alt="The maximum number of datapoints you can use in a data series for a 2-D chart is 32,000..." /></p>
<p>This pop-up, strangely enough, appears when I execute the line:</p>
<p><img src="http://img2.imageshack.us/img2/2413/linean.png" alt="chart.ChartType = chartType (where chartType is xlXYScatterLines)" /></p>
<p>and is accompanied by:</p>
<p><img src="http://img21.imageshack.us/img21/5153/exceptionb.png" alt="Exception from HRESULT: 0x800AC472" /></p>
<p>I do not understand how I could be generating such a popup/warning/exception before I have even specified the data to be graphed. Is Excel trying to be clever here?</p>
<p>As a temporary workaround, I've put the chart.ChartType = chartType statement into a try-catch block so I can keep going. </p>
<p>As the following shows, my "chunking" code is working as intended, but I still encounter the same problem when trying to add data to the graph. Excel says I am trying to graph too many points when clearly I am not.</p>
<p>(<a href="http://img12.imageshack.us/img12/5360/snippet.png" rel="nofollow">full size image</a>)
<img src="http://img12.imageshack.us/img12/5360/snippet.png" alt="code block with watch window" /></p>
<p>I understand I may not have the X Values correctly associated with each series yet, but I'm trying to get this to work before I go further.</p>
<p>Any help would be greatly appreciated.</p>
<p>Here's the full code:</p>
<pre><code>public void DrawScatterGraph(string xColumnLetter, string yColumnLetterStart, string yColumnLetterStop, string xAxisLabel, string yAxisLabel, string chartTitle, Microsoft.Office.Interop.Excel.XlChartType chartType, bool includeTrendline, bool includeLegend)
{
int totalRows = dataSheet.UsedRange.Rows.Count; //dataSheet is a private class variable that
//is already properly set to the worksheet
//we want to graph from
if (totalRows < 2) throw new Exception("Not generating graph for " + chartTitle.Replace('\n', ' ')
+ " because not enough data was present");
ChartObjects charts = (ChartObjects)dataSheet.ChartObjects(Type.Missing);
ChartObject chartObj = charts.Add(100, 300, 500, 300);
Chart chart = chartObj.Chart;
try { chart.ChartType = chartType; }
catch { } //i don't know why this is throwing an exception, but i'm
//going to bulldoze through this problem temporarily
if (totalRows < SizeOfSeries) //we can graph the data in a single series - yay!
{
Range xValues = dataSheet.get_Range(xColumnLetter + "2", xColumnLetter + totalRows.ToString());
Range yValues = dataSheet.get_Range(yColumnLetterStart + "1", yColumnLetterStop + totalRows.ToString());
chart.SetSourceData(yValues, XlRowCol.xlColumns);
SeriesCollection seriesCollection = (SeriesCollection)chart.SeriesCollection(Type.Missing);
foreach (Series s in seriesCollection)
{
s.XValues = xValues;
}
}
else // we need to split the data across multiple series -- this doesn't work yet
{
int startRow = 1;
while (startRow < totalRows)
{
int stopRow = (startRow + SizeOfSeries)-1;
if (stopRow > totalRows) stopRow = totalRows;
Range curRange = dataSheet.get_Range(yColumnLetterStart + startRow.ToString(), yColumnLetterStop + stopRow.ToString());
try
{
((SeriesCollection)chart.SeriesCollection(Type.Missing)).Add(curRange, XlRowCol.xlColumns,
Type.Missing, Type.Missing, Type.Missing);
}
catch (Exception exc)
{
throw new Exception(yColumnLetterStart + startRow.ToString() + "!" + yColumnLetterStop + stopRow.ToString() + "!" + exc.Message);
}
startRow = stopRow+1;
}
}
chart.HasLegend = includeLegend;
chart.HasTitle = true;
chart.ChartTitle.Text = chartTitle;
Axis axis;
axis = (Axis)chart.Axes(XlAxisType.xlCategory, XlAxisGroup.xlPrimary);
axis.HasTitle = true;
axis.AxisTitle.Text = xAxisLabel;
axis.HasMajorGridlines = false;
axis.HasMinorGridlines = false;
axis = (Axis)chart.Axes(XlAxisType.xlValue, XlAxisGroup.xlPrimary);
axis.HasTitle = true;
axis.AxisTitle.Text = yAxisLabel;
axis.HasMajorGridlines = true;
axis.HasMinorGridlines = false;
if (includeTrendline)
{
Trendlines t = (Trendlines)((Series)chart.SeriesCollection(1)).Trendlines(Type.Missing);
t.Add(XlTrendlineType.xlLinear, Type.Missing, Type.Missing, 0, 0, Type.Missing, false, false, "AutoTrendlineByChameleon");
}
chart.Location(XlChartLocation.xlLocationAsNewSheet, "Graph");
}
</code></pre>
http://stackoverflow.com/questions/1260857/excel-2003-charting-chart-data-too-complex1Excel 2003 Charting: Chart Data Too ComplexJoshPeltier2009-08-11T14:48:58Z2009-09-15T11:47:35Z
<p>I have written a macro in excel 2007 to log water-level readings. Once logged, it automatically charts the data for each of the 30 wells. However, when the workbook is opened in Excel 2003, the chart does not work complaining that the chart data is too complex to be displayed (works fine in 2007).</p>
<p>There is one series per well (each well data is logged on a separate worksheet) and has the following formula (so that it will automatically update the chart):</p>
<p>=IF(COUNTA('DW1'!$D:$D)-3>0,OFFSET('DW1'!$D$6,1,0,COUNTA('DW1'!$D:$D)-3), 0)</p>
<p>Where DW1 is the worksheet name containing the data for well DW1.</p>
<p>Any ideas about what is going on? I am using the if statement so that the chart doesn't throw errors if there is no data for a well.</p>
<p>I am thinking that the formulas together exceed the limit of the Series data. Anyway to shorten this or change the formula?</p>
<p>Thanks for any input.</p>
http://stackoverflow.com/questions/1196049/how-can-you-add-vertical-line-for-data-point-in-the-new-microsoft-charting-contro1How can you add vertical line for data point in the new Microsoft Charting Controlgrobartn2009-07-28T18:52:19Z2009-09-14T17:15:22Z
<p>So I am using this fancy new charting control.
<a href="http://weblogs.asp.net/scottgu/archive/2008/11/24/new-asp-net-charting-control-lt-asp-chart-runat-quot-server-quot-gt.aspx" rel="nofollow">More info here</a></p>
<p>I have data displayed already. What I want to do is add a line seperator that is there every year. Basically vertical red line on every jan, 1st?</p>
<p>Any ideas??? Data points do not exist for each day in the year. It can be anywhere from 365 to 1 data point in between two year seperators.</p>
<p>I tried going over sample but did not get any useful idea.
Anyone?</p>
<p>So I found that they have StripLine </p>
<pre><code>Stripline stripLine = new StripLine();
</code></pre>
<p>I wonder how can I add this to a point. Not to make it repeat automatically. Anyone?</p>
<p>Just to be clear I am trying to do something like this. I have a graph and while adding points as soon as I find a point with certain conditions I want to add strip line at that place as well.</p>
http://stackoverflow.com/questions/1125086/sql-server-reporting-services-limit-legend-to-one-series-for-chart-that-has-mult0SQL Server Reporting Services: Limit Legend to One Series for Chart that has Multiple SeriesSteve Rosenbach2009-07-14T12:35:37Z2009-09-11T13:42:11Z
<p>I have a chart with these characteristics:</p>
<ul>
<li><p>chart type is XY (scatter )</p></li>
<li><p>all XY data have x-values that are integers; they are called "Update Cycle" numbers. This represents "score" data from a given program. </p></li>
<li><p>in addition to the values that produce the XY data, I've added two other elements to the "Values:" list: one that is the average of the XY data for any Update Cycle (x-axis) value, and another that is the average of "similar programs" for any Update Cycle. These elements are plotted as lines ("trend lines") on the chart. </p></li>
<li><p>Category Group is Update Cycle number</p></li>
<li><p>Series Group are (1) PersonID and (2) ProgramID</p></li>
</ul>
<p>It all plots fine, but here's my problem:</p>
<p>If I add a Legend, it wants to add Legend entries for each and every point for each and every person (because of SeriesGroup1) - I imagine it's also showing legend entries for the second series, but there are so many for the first series, I can't read anything.</p>
<p>Question: How do I supress legend entries for the first series and only display the two legend entries for the 2nd series?</p>
http://stackoverflow.com/questions/481209/beautiful-charting-graphing-scientific-plotting17Beautiful charting/graphing/scientific plottingYang2009-01-26T20:28:37Z2009-09-11T11:53:10Z
<p>Are there any open-source charting libraries (at this point, I don't care what language/platform it's available for) that can produce "really, really, ridiculously good looking" plots, preferably with features for "scientific" plotting such as error bars? Keynote and Office 2007 really opened my eyes to the aesthetics, and I'm accustomed to the scientific plotting featureset of <a href="http://matplotlib.sourceforge.net/" rel="nofollow">matplotlib</a>, <a href="http://www.gnuplot.info/" rel="nofollow">gnuplot</a>, <a href="http://www.mathworks.com/products/matlab/" rel="nofollow">Matlab</a>, etc. The closest libraries I've found, aesthetically, are <a href="http://linil.wordpress.com/2008/09/16/cairoplot-11/" rel="nofollow">CairoPlot</a> and <a href="http://bitbucket.org/lgs/pycha/wiki/Home" rel="nofollow">PyCha</a>, but these have substantially more limited sets of chart types and features. In the proprietary world I've found <a href="http://www.devexpress.com/Products/NET/Controls/Charting/screenshot_gallery.xml" rel="nofollow">XtraCharts</a>.</p>
<p>(See <a href="http://stackoverflow.com/questions/52652/pretty-graphs-and-charts-in-python">a related question</a>.)</p>
http://stackoverflow.com/questions/1058572/hiding-the-gridlines-on-an-asp-net-chart-control0Hiding The Gridlines On An ASP.Net Chart ControlGavin Draper2009-06-29T14:18:42Z2009-09-02T16:45:01Z
<p>I've made some graphs in my ASP.Net MVC application using the ASP.Net MSChart control. I cant seem to find the property for hiding the gridlines, anyone know how this is done?</p>
<p>Thanks</p>