adigaonline
-
Content count
6 -
Joined
-
Last visited
Posts posted by adigaonline
-
-
Hi,
I am using the Fusion Map for plotting the region baased data. My MAP area shows the legends used for shading various region. Since there are more legends, I am getting a scroll bar which I don't want. Instead, I want to pick every 5thor 10th value and make it appear in the legend. Can I have such control so that I can tell the Fusion Map which color mapping to be included in the Legend box?
Thanks
-Prem
-
thanks for reply...its working now.

Hi,
You would need to add z-index property in the CSS.
Create two classes for the divs for datePicker and chartContainer in the CSS as mentioned in the earlier post.
Hope this helps.
-
Hi,
Where do i need to set this z-index, i mean which file??
Thanks,
Adiga
Hi,
Could you please try using setTransparent method?
Ref. Code:
myChart.setTransparent(true);
If this does not help, try to set z-index property.
z-index property specifies the stack order of an element.
#datePicker
{
width: 600px;
z-index: 1000; ----------------------------> (setting positive z-index)
}
#chartContainer
{
background: #FFFFFF;
z-index: -1; ----------------------> (setting negative z-index ).
}
Hope this helps.
-
Hi,
I did tried the same, it did not helped me.

script = "<script type=\"text/javascript\"> var dataString = '" + dataXML + "';FusionCharts.setCurrentRenderer('javascript');var chart = FusionCharts.items[\"ChartId\"]; if(chart == null){ chart = new FusionCharts('Line', \"ChartId\", \"450\", \"300\", \"0\", \"0\");} chart.setXMLData(dataString); chart.setTransparent(true); chart.render(\"chartdiv\");</script>";
Hi,
Could you please try using setTransparent method?
Ref. Code:
myChart.setTransparent(true);
If this does not help, try to set z-index property.
z-index property specifies the stack order of an element.
#datePicker
{
width: 600px;
z-index: 1000; ----------------------------> (setting positive z-index)
}
#chartContainer
{
background: #FFFFFF;
z-index: -1; ----------------------> (setting negative z-index ).
}
Hope this helps.
-
Hi,
I have problem with Fushion charts. please help me to resolve this issue.
Im using fusion charts(line), and im also using jquery datepicker for selecting two different date ranges.
when i select dates, the date picker comes properly when there is no data in chart display. (please find attached nodata inchart.jpg file)
the problem is when data is displayed in chart, and when i try to change the date using date picker, the chart data is coming on top of calendar picker which i dont want to happen. (please find attached Fusioncharts_JqueryCalender.jpg file).
Is it the problem with date picker or fusion charts???
Kindly let me know how to fix this issue.. please do help.
thanks,
Adiga

Legend As Continous Stip
in Using FusionMaps XT
Posted · Report reply
Hi,
I am using the Fusion Map for plotting the region based data. My MAP area shows the legends used for shading various region. I want the legend to shown the colors continuosly ( similar to the attached image). The idea that I am trying to bring is to make the Business user see the color transition (as it appears continously) instead asseperate boxes appearing in the legend area.
-Prem