How to interrup a serie in a chart.

R

Roger

I am trying to interrupt a serie in a chart.
This means do not graph any value for a specific
category, the value 0 has different interpretation.

I'm loading the series values from a literal using the
following code:

'Set the chart type of the serie
MyChart.SeriesCollection.Item(i).Type =
OWC10.ChartChartTypeEnum.chChartTypeLine

'Set the categories and values using a string.
MyChart.SeriesCollection.Item(i).SetData
(c.chDimCategories, -1, strCategories)
MyChart.SeriesCollection.Item(i).SetData(c.chDimValues, -
1, strValues)

The strValues is separate by Tabs.
I'm working with ASP.NET and OWC10.

Note: This is possible to do using Excel without data in
a value cell.

Thanks in advance!
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top