Charts Problem

  • Thread starter Sanjeev Srigiri
  • Start date
S

Sanjeev Srigiri

Hello,
I am having problem to populate the following chart types,
it would be great if anyone suggest me how to get them working

chChartTypeScatterMarkers
chChartTypeScatterSmoothLineMarkers
chChartTypeScatterSmoothLine
chChartTypeScatterLineMarkers
chChartTypeScatterLine
chChartTypeScatterLineFilled
chChartTypeBubble
chChartTypeBubbleLine
chChartTypeStockHLC
chChartTypeStockOHLC
chChartTypePolarMarkers
chChartTypePolarLine
chChartTypePolarLineMarkers
chChartTypePolarSmoothLine
chChartTypePolarSmoothLineMarkers

for all the other chart types I just set the datasource of the chart to
pivot
Set MyChart.DataSource = MyPivotTable

and it works fine, and i play with colors

but, for the above chart types I tired setting the setdata property
for eg for Polar Line chart type , i used the following code, but does't
work

MyChart.SetData chDimCategories, 0, 0
MyChart.SetData chDimThetaValues, 0, 1

like wise I tried for all the problematic charts, but in vein.

can somebody please send me some sample codes for the above charts.

Thanks in advance

Sanjeev
 
A

Alvin Bruney

These charts take their data in a bit differently which is why you are
having a problem. Let me suggest Professional ASP Programming Guide for
Office Web Componenent by Qimao Zhang. It's all in there.
 
G

Greg

Thanks for threspone Alvin,

I am probably in the novice class in the developers category. I basically
built a simple but powerful (and free) reporting application leveraging the
OWC Pivot & Chart components (similar to the one in Stearns book) that
enables users to view canned reports and then interact with them and save
their own version. Most tables are less than 100K rows so performance is
acceptable at this price.

Right now the apps leverages an oracle OLEDB connection on the client side.
I am currently building/testing the method of connecting to an XML island
generated by ASP pages on the server. This will eliminate all client
configuration hassles. Do you think I will encounter worse or better
performance?

Also Do You Program on a consulting basis?
I need to rebuild the small application with someone who knows the OWC
components inside and out.

Thanks,
Greg




replicated Stearn's reporting
 

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

Similar Threads

Office Chart doubt 0

Top