Jump to content
Software FX Community

Drill Down feature - Problem


User (Legacy)

Recommended Posts

Hi,

I am using the DrillDown feature in ChartFX Internet which would enable the

user to click a series and it directs to a new asp page. This works fine,

however I am not able to pass the group number (not sure of the term used).

I am able to pass the series and the value clicked to the next page. But I

want to pass the group number instead (i.e. the values 1,2,3,4,5 on the x

axis).

The code is as below

Please tell me what I am doing wrong

Thanks

- Rich

<%

Set chart2 = Server.CreateObject("ChartFX.WebServer")

' The samples look better in white

chart2.RgbBk = RGB(255,255,255)

chart2.chart3D = False

chart2.SerLeg(0) = "Sales"

chart2.SerLeg(1) = "Projected"

' This chart will JUMP to the same URL passing parameters depending on

where you click

chart2.URL(0) = "DrillDetails.asp"

chart2.URLOptions = CHART_URL_JUMP Or CHART_URL_GLOBAL Or

CHART_URL_PARAM

chart2.DblClk CHART_URLCLK,0

chart2.URLParamMask = "Group=%l&Series=%s&Value=%v"

'chart2.URLTarget = "_new"

chart2.Title(CHART_BOTTOMTIT) = "Jump with parameters"

%>

<%= chart2.GetHtmlTag("500","350","Auto","Chart2") %>

Link to comment
Share on other sites

Thanks.

%N returns the point index. Is there a parameter to get the point name.?

i.e. %S gives Series index and %s returns the series name

I tried using %n, but it didn't work. Any ideas.

Thanks

- Rich

"SoftwareFX Support" <support@softwarefx.com> wrote in message

news:CSO$OcSTCHA.1288@webserver1.softwarefx.com...

> Use

>

> %S for the series index and %N for the point index (what you call group).

> Notice that these are CAPITAL N and S.

>

> --

> FP

> Software FX, Inc.

>

>

Link to comment
Share on other sites

Sorry, it works fine

Thanks

"Rich" <none@none.com> wrote in message

news:iavM5HqTCHA.1288@webserver1.softwarefx.com...

> Yes, I did try %l, but it does not return any value

>

> - Rich

>

> "SoftwareFX Support" <support@softwarefx.com> wrote in message

> news:$9MfR2pTCHA.1288@webserver1.softwarefx.com...

> > Do you mean the point label ? if so, yes that will be %l.

> >

> > --

> > FP

> > Software FX, Inc.

> >

> >

>

>

Link to comment
Share on other sites

Archived

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

×
×
  • Create New...