JJ Report post Posted November 6, 2008 Hi, I have been trying to open a new window using a Linear Gauge, is this possible? The gauge has 3 different ranges and I would like to open a new chart depending on the range you click on. Thanks Share this post Link to post Share on other sites
Arindam Report post Posted November 6, 2008 (edited) Hi, Could you please see blue print application? http://www.fusioncharts.com/widgets/Download.asp You can follow this code also. FC_ChartUpdated method is called when user has changed pointer value. Here, we track down the chage in year Selector Liner Gauge on top of the page function FC_ChartUpdated(DOMId){ //Check if DOMId is that of the chart we want i.e. year selection linear gauge if (DOMId.toLowerCase()=="fg_yearselector"){ //Get reference to the chart var FGRef = getChartFromId(DOMId); //Get the selected value/year var year = Math.round(FGRef.getData(1)); //updating YearSelectionChart to go to the centre of year's value FGRef = getChartFromId("FG_YearSelector"); FGRef.setData(1, year); location.href="abcd.php?year=" + year; } } Edited November 6, 2008 by Guest Share this post Link to post Share on other sites