Tagged Questions
8
votes
3answers
4k views
C#/Excel: Working Around Maximum Series Size On Chart
I need help programatically graphing more points than can fit in a single Excel series.
According to http://office.microsoft.com/en-us/excel/HP100738491033.aspx the maximum number of points ...
1
vote
2answers
128 views
ASP.NET Chart add percentage next to the number
I have a chart control that is displaying columns with values on top (series with labels). Those values come from the database and they are already in the percentage format (i.e.: displaying 12.54 not ...
1
vote
1answer
938 views
Changing Default Colors of WPFToolkit Chart Control
Does anyone know how to or found any good examples of explicitly setting the color of the data points series when using the WPFToolkit chart control? I would like to set this as a style in my XAML.
1
vote
0answers
574 views
Silverlight 4 charting toolkit: how to create a custom series class?
I need to create a custom series class for the Silverlight 4 toolkit (April 2010 drop). There is a tutorial here:
...
1
vote
1answer
336 views
How to display two series via Google Chart API?
I can't get the two series of numbers to scale together.
Here is sample code that you can paste into...
http://code.google.com/intl/en/apis/chart/docs/chart_playground.html
cht=lxy
chs=400x300
...
0
votes
0answers
14 views
Silverlight 4 Custom Chart Series
I have to create a Chart which looks like that, using Silverlight 4 Toolkit :
I think I have to create a custom chart series. I've already seen this blog entry :
...
0
votes
2answers
133 views
How to add multiple series on a Chart in Excel using C#
I would like to add a chart like the following picture.
This chart has 3 series (Black, Red, Blue).
The following is a block of code that creates "one" series on a chart...
Excel._Workbook ...
0
votes
1answer
359 views
jquery flot bar chart multiple series
in order to make things easy to undertand i'm providing the code: http://jsbin.com/otaruq
what we have here is a data set like this: (look the source for more)
"label": "scott",
"data": ...
0
votes
1answer
64 views
To set dynamic data of excel chart at runtime and not Excel.Range
I want to set data for Excel chart but cannot display data in any Range.
so i cannot use following function :
chart.SetSourceData(range,XlRowCol)
i have heared about the series but dont know how ...
0
votes
0answers
119 views
microsoft chart control multi series label display problem for shorter stacked bar
I have a multi series stacked bar chart. The series label is set to center for each series.
For the shorter series which is too short to display as compared to series on other bars, the series label ...
0
votes
2answers
562 views
How to display minimum and maximum values for DateTimeAxis or LinearAxis in Silverlight Toolkit's line series
I'm hoping this is a simple question, though I have not been able to find an answer yet on the web.
I'm using the April 2010 release of Silverlight Toolkit's line series and I'm required to display ...
0
votes
1answer
434 views
Python - Extra Excel chart series with win32com
I'm writing some code for an assignment, and I need to create a simple column chart in Excel. This afternoon I found win32com (amazing tool by the way), but I've been suffering from either the lack of ...
0
votes
2answers
343 views
.NET Chart: How to add DataPoint with different member types than double?
The namespace I'm looking at is System.Windows.Forms.DataVisualization.Charting in .NET Framework 3.5.
I've constructed a Chart with name chart1 and added a Series called mySeries to that chart.
...
0
votes
3answers
692 views
Add an empty series on an Excel chart
I'm trying to add many series to a chart using VBA, as in the code below.
For i = 0 To 9
Set serNew = chtMap.SeriesCollection.NewSeries
With serNew
.XValues = Range("Y4").Cells(1, 1 ...
0
votes
1answer
144 views
C# - Charting - Adding a Range to a Series
Using Microsoft's Charting control, is it possible to add a range of points at once without having to iterate through the List I want to add? I have a List and I need to add the entire list as the ...
0
votes
0answers
91 views
MVC Chrat custom color issue Web.helper class
Can any body help me, How can I assign my own custom colors in pie chart for only one series but different data points using Web.helper?
I am able to assign diffrent color to different series but not ...
0
votes
0answers
998 views
Flex Chart ColumnSet with dataFunction in ColumnSeries lead to a bug?
I use Flex ColumnChart and set ColumnSeries in ColumnSet with dataFunction.
The function I need is to change series by user interaction, so I add a button to pop series from myChart.series (actually I ...
0
votes
1answer
714 views
Flex Charts — How can I change the color of a chartItem on rollover?
Is there a way to set a rollover color for each series in a chart?
For instance, I have a column chart with two series: one series is set to blue and the second series is set to gold.
When the user ...
0
votes
1answer
2k views
Excel C# Com Chart Multiple Series Problem
Please can someone help me with this as it's driving me nuts!
I'm creating an excel chart using C# and the COM interface pragmatically.
I've created the chart using the chart wizard.
I want to then ...
0
votes
3answers
1k views
How to do I change a Series color in Excel using C#?
I have written a program in C# whereby it automatically generates a graph for me from a CSV file and puts it onto a new XLS file. However, I need to change the color of the Line (as it is a Line ...
0
votes
2answers
3k views
Flex bar chart label function with multiple series?
I have a Flex bar chart with two data series in a clustered format. The series are called RequiredFunding and ApprovedFunding, so they're plotted next to each other. The problem I am having is ...
0
votes
2answers
159 views
Optional series in a SSRS chart?
is it possible to make a series in a chart optional (i.e. only rendered when the user clicks a checkbox, in case the corresponding query takes a while and may not be required)?
Or are there any ...