User (Legacy) Posted August 13, 2006 Report Share Posted August 13, 2006 Stupid question I would like to make the radialgauge clickable and jump to another location ( a page with more information) which is the best way doing that.. Regards Magnus Link to comment Share on other sites More sharing options...
User (Legacy) Posted August 13, 2006 Author Report Share Posted August 13, 2006 Stupid question I would like to make the radialgauge clickable and jump to another location ( a page with more information) which is the best way doing that.. Regards Magnus Link to comment Share on other sites More sharing options...
Software FX Posted August 16, 2006 Report Share Posted August 16, 2006 Dear Magnus: The gauge does not support drill-down natively. We will put drill-down in our todo list for the next version. In the meantime, I have produced a simple aspx page which will do the job: <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %> <%@ Register Assembly="ChartFX.WebForms.Gauge" Namespace="ChartFX.WebForms.Gauge" TagPrefix="ChartFXGauge" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" > <head runat="server"> <title>Untitled Page</title> </head> <body> <form id="form1" runat="server"> <div onclick="test();" style="cursor:hand"> <ChartFXGauge:DigitalPanel ID="DigitalPanel1" runat="server"></ChartFXGauge:DigitalPanel> </div> </form> <script language=javascript> test = function() { window.location="http://www.softwarefx.com" } </script> </body> </html> Regards, -- PR "Magnus Salgo" <mgns@novonordisk.com> wrote in message news:KZJcsrpvGHA.1280@webserver3.softwarefx.com... > Stupid question I would like to make the radialgauge clickable and jump to > another location ( a page with more information) which is the best way > doing > that.. > > Regards > Magnus > > Link to comment Share on other sites More sharing options...
Software FX Posted August 16, 2006 Report Share Posted August 16, 2006 Dear Magnus: The gauge does not support drill-down natively. We will put drill-down in our todo list for the next version. In the meantime, I have produced a simple aspx page which will do the job: <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %> <%@ Register Assembly="ChartFX.WebForms.Gauge" Namespace="ChartFX.WebForms.Gauge" TagPrefix="ChartFXGauge" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" > <head runat="server"> <title>Untitled Page</title> </head> <body> <form id="form1" runat="server"> <div onclick="test();" style="cursor:hand"> <ChartFXGauge:DigitalPanel ID="DigitalPanel1" runat="server"></ChartFXGauge:DigitalPanel> </div> </form> <script language=javascript> test = function() { window.location="http://www.softwarefx.com" } </script> </body> </html> Regards, -- PR "Magnus Salgo" <mgns@novonordisk.com> wrote in message news:KZJcsrpvGHA.1280@webserver3.softwarefx.com... > Stupid question I would like to make the radialgauge clickable and jump to > another location ( a page with more information) which is the best way > doing > that.. > > Regards > Magnus > > Link to comment Share on other sites More sharing options...
User (Legacy) Posted August 29, 2006 Author Report Share Posted August 29, 2006 Thanks .... A drill down is wanted as I build a portal using webparts and would like to have the possibility to click and get a popup window with a bigger sized graph displayed.... Regards Magnus Sweden "Software FX Support" <support@softwarefx.com> wrote in message news:9AckH4XwGHA.2572@webserver3.softwarefx.com... > Dear Magnus: > > The gauge does not support drill-down natively. We will put drill-down in > our todo list for the next version. In the meantime, I have produced a > simple aspx page which will do the job: > > <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" > Inherits="_Default" %> > > <%@ Register Assembly="ChartFX.WebForms.Gauge" > Namespace="ChartFX.WebForms.Gauge" > TagPrefix="ChartFXGauge" %> > > <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" > "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> > > <html xmlns="http://www.w3.org/1999/xhtml" > > <head runat="server"> > <title>Untitled Page</title> > </head> > <body> > <form id="form1" runat="server"> > <div onclick="test();" style="cursor:hand"> > <ChartFXGauge:DigitalPanel ID="DigitalPanel1" > runat="server"></ChartFXGauge:DigitalPanel> > </div> > </form> > > <script language=javascript> > test = function() { > window.location="http://www.softwarefx.com" > } > </script> > </body> > </html> > > Regards, > > -- > PR > > > > "Magnus Salgo" <mgns@novonordisk.com> wrote in message > news:KZJcsrpvGHA.1280@webserver3.softwarefx.com... > > Stupid question I would like to make the radialgauge clickable and jump to > > another location ( a page with more information) which is the best way > > doing > > that.. > > > > Regards > > Magnus > > > > > > Link to comment Share on other sites More sharing options...
User (Legacy) Posted August 29, 2006 Author Report Share Posted August 29, 2006 Thanks .... A drill down is wanted as I build a portal using webparts and would like to have the possibility to click and get a popup window with a bigger sized graph displayed.... Regards Magnus Sweden "Software FX Support" <support@softwarefx.com> wrote in message news:9AckH4XwGHA.2572@webserver3.softwarefx.com... > Dear Magnus: > > The gauge does not support drill-down natively. We will put drill-down in > our todo list for the next version. In the meantime, I have produced a > simple aspx page which will do the job: > > <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" > Inherits="_Default" %> > > <%@ Register Assembly="ChartFX.WebForms.Gauge" > Namespace="ChartFX.WebForms.Gauge" > TagPrefix="ChartFXGauge" %> > > <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" > "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> > > <html xmlns="http://www.w3.org/1999/xhtml" > > <head runat="server"> > <title>Untitled Page</title> > </head> > <body> > <form id="form1" runat="server"> > <div onclick="test();" style="cursor:hand"> > <ChartFXGauge:DigitalPanel ID="DigitalPanel1" > runat="server"></ChartFXGauge:DigitalPanel> > </div> > </form> > > <script language=javascript> > test = function() { > window.location="http://www.softwarefx.com" > } > </script> > </body> > </html> > > Regards, > > -- > PR > > > > "Magnus Salgo" <mgns@novonordisk.com> wrote in message > news:KZJcsrpvGHA.1280@webserver3.softwarefx.com... > > Stupid question I would like to make the radialgauge clickable and jump to > > another location ( a page with more information) which is the best way > > doing > > that.. > > > > Regards > > Magnus > > > > > > Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.