charting

Charting in web-based applications

What are the various charting tools that are available for displaying charts on a web page using ASP.NET? I know about commercial tools such as Dundas and Infragistics. I could have "googled" this but I want to know the various tools that SO participants have used? Any free charting tools that are available are also welcome to be menti...

How does theming for ziya charts work?

I'm implementing charts using The Ziya Charts Gem. Unfortunately, the documentation isn't really helpful or I haven't had enough coffee to figure out theming. I know I can set a theme using chart.add(:theme, 'whatever') Problem: I haven't found any predefined themes, nor have I found a reference to the required format. ...

What charting tools/controls would you use with SQL Server/Reporting Services?

Apart from commercial tools like Dundas, are there any open source or cheaper (and decent) 3rd party charting tools/controls for reporting services out there? ...

Book/resource recommendation for learning charting with Reporting Services

What books or online resource would you recommend for learning how to do advanced charts and dashboard design with Reporting Services? ...

Automatic Chart Pagination with Report Parameters

Based on several report parameters in SQL Server 2005 reporting services, I would like to automatically generate one or several chart(s) for each row in the return result and paginate or space them out. How do I go about that? ...

Extending chart functionality in SSRS

The default chart object in the SQL Server (2005) Business Intelligence Development Studio doesn't seem to some have formatting options like : specifying the text direction of labels in the x and y axis adding a trendline to a bar chart arbitrarily resizing items in a chart - for example, if I resize the chart object, everything gets r...

Which Gantt chart/Project management tool would you recommend for linux?

I need a Project management tool that works in Linux, and has Gantt charts. It doesn't have to be free, just not expensive. I don't care how it stores the information I give it, as long as I can access it. I must be able to print the Gantt charts. Must work in Linux. With those requirements, what can you recommend? TheObserver asked...

Excel Timesheet

I have some data in the following format: Salary Code InTime 1690 09:03:00 1690 09:13:00 1690 09:07:00 1691 08:48:00 1691 08:52:00 1691 08:50:00 1691 08:54:00 1691 08:46:00 1691 09:28:00 1691 08:59:00 1691 08:53:00 1691 09:02:00 1693 08:57:00 1693 09:01:00 1693 08:54:00 1693 09:22...

Drill down charts in ASP.NET

I'm trying to get a set of reports running in an (VB) ASP.NET project and as part of that I'd like to display some charts visualising the data. I'm able to get charts generated, and have used Flotr, Plotr, Google Charts, and some CSS techniques at various times as I've experimented with this. Ideally, what I'm trying to achieve is havin...

Adding a threshold/goal line to an Infragistics 6.3 LineChart?

I am trying to tweak an existing LineChart (WebUI.UltraWebChart) by adding goal-line. This seems nearly impossible to draw a simple "MAX GOAL" line (either horizontally or vertically). We will eventually either upgrade to the newest bits or revamp into Silverlight graphs, however, this needs resolved now. ...

2D overlap line chart

Hi Does any one know of an API that would allow me to draw something like this. It would need some interactivity to it zooming change second dimension axis angle I was looking at JFreeChart but I don't see any example of doing 2D overlap chart. Thanks ...

Is there a way to change the sql reporting chart type and sub type at runtime?

Is there a way to change SQL Reporting "chart type" and "sub type" at runtime? I'm working with a .rdlc report and can't seem to figure out the way to change this at runtime. I don't have the "Expression" ability in either of these fields. ...

New asp.net charting controls - will they work with MVC (eventually)?

Scott Gu just posted about a new set of charting controls being distributed by the .NET team. They look incredible: http://weblogs.asp.net/scottgu/archive/2008/11/24/new-asp-net-charting-control-lt-asp-chart-runat-quot-server-quot-gt.aspx The million dollar question is ... will they work with MVC, and if so, when? ...

Recommendation for high performance WPF Chart

We're working on a WPF-based desktop application that charts financial markets information (candlestick charts, overlayed indicator curves, volume, etc). The charts are displayed in real-time with responses to market ticks being shown in real-time (updating one to two times per second is probably a reasonable display refresh policy). W...

What graphing packages/APIs exist for Perl?

I'm doing some research on online Graphing packages for different languages and would like to know what current up-to-date graphing packages there are for Perl which are worth investigating Minimum desired capabilities should include the kind which Google offers through its API A brief synopsis of the key benefits of the recommended pa...

Beautiful charting/graphing/scientific plotting

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 accustome...

ASP.Net Charting not available

I'm at wits end now, I have googled this to death and found nothing. I have Visual Studio 2008 Professional installed with Service Pack 1. I have also installed .Net Framework 3.5 SP1 obviously. I have installed ASP.Net Charting as well the VS08 addon. Yet I cannot find the control anywhere. I have tried adding the controls from the in...

Event flags in jQuery Flot

I'm hoping to add events to some Google Flot charts, like those seen in Google Finance. After searching some, it looks like someone has started this and has posted a couple images at http://code.google.com/p/flot/wiki/FlotUsage. I can't find any Flot plugins that can do this. Does anyone know of a Flot plugin or example so I can make s...

Show data points on a Flex <mx:LineSeries>

I'm using a graph with a <mx:LineSeries>. When I hover over the line it shows the data points as little circular points. How can I get these points to display all of the time? ...

NotImplementedException thrown when using ASP.net chart control

Has anyone got this exception thrown when using the the controls databinding methods?? I have a data structure like this public class ChartData { public int Year {get;set;} public decimal Stat {get;set;} } Its collection is List<ChartData> cData; So i bind this object as chart1.BindXY(cData,"Year",cData,"Stat"); I get ...