XMLURL parameter for an OWC 11 chart object

N

Nick Palmer

I am trying to do some work with a client side OWC 11 Chart object. I've
added the chart object to my aspx page, and I get the OBJECT section in the
code. Now, I'm also using the OWC 11 Excel object as well. The way I
generate the XML for the Excel object is by using the parameters DataType
and XMLURL. I have the following in my OWC 11 Excel objects code :

<PARAM NAME="DataType" VALUE="XMLURL">
<PARAM NAME="XMLURL" VALUE="GenerateExcelGrid.aspx">

So when the page with the Excel object is loaded on the client, it calls the
GenerateExcelGrid.aspx page which generates the correct XML and then does a
response.write with the XML string and that shows the Excel data.

So, I'm trying to do the same for the OWC 11 chart object. In my aspx page
with my chart object, I have the following :

<PARAM NAME="DataType" VALUE="XMLURL">
<PARAM NAME="XMLURL" VALUE="GenerateExcelChart.aspx">

In my GenerateExcelChart.aspx I create a server side Chartspace object,
generate the chart and then return the XML data using the Chartspaces
XMLData call. I then do a response.write with this string. Only problem,
is my GenerateExcelChart.aspx page never seems to get called. Does the OWC
11 Chart object support the DataType and XMLURL parameters in the way that I
am using them ?

Thanks in advance,
Nick
 

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