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
151 views

Alternatives to the Dynamic Time Warping (DTW) method

I am doing some research into methods of comparing time series data. One of the algorithms that I have found being used for matching this type of data is the DTW (Dynamic Time Warping) algorithm. ...
1
vote
2answers
244 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 ...
1
vote
7answers
816 views

C# - 1 2 4 8 16 32 64… series - Find the indexes based on input number, recursive function?

I have a series of number as such: [1 2 4 8 16 32 64 128], if I input a number, i.e. 66, then the output should be 64 and 2. If I input 87, then the output should be 64, 16, 4, 2, 1. (Basically, it ...
0
votes
1answer
79 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
2answers
392 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
1answer
681 views

MS Chart Control series label positioning

I've got a gantt chart (RangeBar) I've made with the MS Chart control; for some shorter series, the label gets displayed outside the bar; I'd prefer to set it so the label gets stays inside the bar ...
0
votes
1answer
150 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
1answer
883 views

Dynamically adding series to an MSCHART area

I need to dynamically add series to an MSCHART ChartArea. I retrieve column names from a datatable. The series name needs to be the column name. I can build the SERIES ADD in a string, but then what? ...
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
2k 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 ...