User (Legacy) Posted August 4, 2004 Report Share Posted August 4, 2004 is it possible to link a graph to a specific web page? i.e. if i click on one of the bars on the bar graph then it should go to somepage.htm....cliking on another bar goes to somepage2.htm also is it possible to pass variables like one does in ASP....i.e. QueryString stuff. Thanks! Link to comment Share on other sites More sharing options...
Software FX Posted August 5, 2004 Report Share Posted August 5, 2004 Yes Hyperlinking is supported in Chart FX. What version of Chart FX are you using. I need to know this to direct you to the appropriate documentation. -- FP Software FX Link to comment Share on other sites More sharing options...
User (Legacy) Posted August 10, 2004 Author Report Share Posted August 10, 2004 chartfx internet "SoftwareFX Support" <noreply@softwarefx.com> wrote in message news:ly0OJNveEHA.3888@webserver3.softwarefx.com... > Yes Hyperlinking is supported in Chart FX. > > What version of Chart FX are you using. I need to know this to direct you to > the appropriate documentation. > > > > -- > FP > Software FX > > Link to comment Share on other sites More sharing options...
Software FX Posted August 10, 2004 Report Share Posted August 10, 2004 The Url property allows you to do this. An example can be found in the documentation. Here is a copy of it: Set chart = Server.CreateObject("ChartFX.WebServer") ' The samples look better in white chart.RgbBk = RGB(255,255,255) chart.chart3D = False ' This chart will JUMP to a different URL depending on the series you double click chart.URL(0) = "\Samples\CfxIE\Internet\DrillSeries1.htm" chart.URL(1) = "\Samples\CfxIE\Internet\DrillSeries2.htm" chart.URLOptions = CHART_URL_JUMP Or CHART_URL_BYSERIES chart.DblClk CHART_URLCLK,0 Please check the Programmer's guide and our support site for more information. -- FP Software FX Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.