nimrod

Members
  • Content count

    13
  • Joined

  • Last visited

Posts posted by nimrod


  1. I don't think I had this problem in the previous version, but after upgrading to the latest version of FusionMaps XT, the labels inside a region are not clickable when a link is available.

     

    For example, I have a county map of the state of Georgia and all my counties have drill-down links that update other graphs. If you hover your mouse over the label inside a county region, it is not clickable. You will need to find an area outside of the labels to be able to click on a region for to access the drill-down.

     

    Does that make sense?

     

    The problem with this is, with smaller map renders, when the mouse is over a label, you would think that the drill-down link is not working.


  2. Hi,

     

    Was there a change in the format of defining the color range of a map in the latest version of FusionMaps XT?

     

    I updated the files and the legend and the colorrange are not working after the update. Here's a snippet of the XML generated:

     

    <map toolTipBgColor='FFFFFF' showBevel='0' showMarkerLabels='1' fillColor='CCCCCC' borderColor='000000' showCanvasBorder='0' baseFont='Arial' baseFontSize='12' markerFontColor='000000' markerFontSize='12' legendPosition='bottom' useHoverColor='1' showMarkerToolTip='1'>

    <colorRange>

    <color minValue='0' maxValue='0' displayValue='0' color='F8F8F8'/>

    <color minValue='1' maxValue='26' displayValue='1 - 25' color='f0e3d4'/>

    <color minValue='26' maxValue='50' displayValue='26 - 50' color='e2c9aa'/>

    <color minValue='50' maxValue='100' displayValue='51 -100' color='c59353'/>

    <color minValue='100' maxValue='300' displayValue='101 - 300' color='936e3e'/>

    <color minValue='300' maxValue='20000' displayValue='301+' color='62492a'/>

    </colorRange>

     

    Also, I saw in the documentation that you are using 'code' instead of 'color', I tried that but the colors and legend are still not displaying.

     

    Nevermind, I saw the problem, it was this line: <color minValue='0' maxValue='0' displayValue='0' color='F8F8F8'/>


  3. Hi,

     

    Was there a change in the format of defining the color range of a map in the latest version of FusionMaps XT?

     

    I updated the files and the legend and the colorrange are not working after the update. Here's a snippet of the XML generated:

     

    <map toolTipBgColor='FFFFFF' showBevel='0' showMarkerLabels='1' fillColor='CCCCCC' borderColor='000000' showCanvasBorder='0' baseFont='Arial' baseFontSize='12' markerFontColor='000000' markerFontSize='12' legendPosition='bottom' useHoverColor='1' showMarkerToolTip='1'>

    <colorRange>

    <color minValue='0' maxValue='0' displayValue='0' color='F8F8F8'/>

    <color minValue='1' maxValue='26' displayValue='1 - 25' color='f0e3d4'/>

    <color minValue='26' maxValue='50' displayValue='26 - 50' color='e2c9aa'/>

    <color minValue='50' maxValue='100' displayValue='51 -100' color='c59353'/>

    <color minValue='100' maxValue='300' displayValue='101 - 300' color='936e3e'/>

    <color minValue='300' maxValue='20000' displayValue='301+' color='62492a'/>

    </colorRange>

     

    Also, I saw in the documentation that you are using 'code' instead of 'color', I tried that but the colors and legend are still not displaying.


  4. Hi,

     

    I am afraid, each chart needs to have an independent XML stream.

     

    However, if you can pre-process (using your own code) the XML stream before passing it to the chart and build two separate valid XMLs (for 2 charts) and then pass each to respective chart, it can be achieved.

     

    Got ya. I'll try that, thanks.


  5. Hi,

     

    Is it possible to provide data to multiple charts using one XML stream? For example:

     

    <set value="160" otherValue="120">

     

    I would like to use 'value' to provide data for one chart and 'otherValue' to be the data points for a separate chart on the same page. Thanks.