Jump to content
Software FX Community

drilldown not working for bar chart


User (Legacy)

Recommended Posts

I used the follwing code. The drill down works for pie slices  but not for

bars in bar chart for same series. What option is there for bar chart or is

there anything common for drilldown of pie and bar with parameters.

chart.URLOptions = CHART_URL_JUMP Or CHART_URL_BYVALUE

This will allow you to assign a different URL to each point using the Url

property as follows:

chart.URL(0) = "/enquiries/claims_new.asp?<any parameter here>"

chart.URL(1) = "/enquiries/claims_new.asp?<any parameter here>"

...

Thanks

Link to comment
Share on other sites

In a bar chart you will normally want to set a URL per series so your code 

would be

chart.URLOptions = CHART_URL_JUMP Or CHART_URL_BYSERIES

--

Regards,

JC

Software FX Support

"neeraj agrawal" <nagrawal@acrosoft.com> wrote in message

news:SwJdXMWrEHA.3984@webserver3.softwarefx.com...

>I used the follwing code. The drill down works for pie slices but not for

> bars in bar chart for same series. What option is there for bar chart or

> is

> there anything common for drilldown of pie and bar with parameters.

>

>

> chart.URLOptions = CHART_URL_JUMP Or CHART_URL_BYVALUE

>

> This will allow you to assign a different URL to each point using the Url

> property as follows:

>

> chart.URL(0) = "/enquiries/claims_new.asp?<any parameter here>"

> chart.URL(1) = "/enquiries/claims_new.asp?<any parameter here>"

> ...

> Thanks

>

>

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...