|
|
|
Forum Newbie
      
Group: Forum Members
Last Login: 3/28/2007 6:32:11 AM
Posts: 3,
Visits: 8
|
|
| Hello, How to change data value and label to bold on only one column (the last for exemple) of a column2d chart ? thanks David
|
|
|
|
|
FusionCharts Team
      
Group: Administrators
Last Login: 2 days ago @ 8:20:12 AM
Posts: 2,194,
Visits: 521
|
|
| David, There isn't a direct way to do so now. However, a tweak would be to pass the last label with bold HTML tags and set DATALABELS to render as HTML.
Thanks, Pallav Nadhani FusionCharts Team
|
|
|
|
|
Forum Newbie
      
Group: Forum Members
Last Login: 3/28/2007 6:32:11 AM
Posts: 3,
Visits: 8
|
|
| It's seem to work only on tooltip and not datalabels (the bold) I wrote this <?xml version="1.0" encoding="utf-8" ?> <graph caption="Fonds sous gestion" rotateNames="0" xAxisName="" yAxisName="En millions d Euros" canvasbgcolor="FFFFFF" hovercapbg="FFFFFF" hovercapborder="FFFFFF" yaxisminvalue="0" bgColor="FFFFFF" baseFontSize="12" outCnvBaseFontSze="10" formatNumberScale="0" decimalPrecision="0" formatNumber="1" useRoundEdges="0" showBorder="0" legendAllowDrag = "1" plotGradientColor="" showSum="1" showDivLineValues="1" adjustDiv="1" divLineColor="F0F0F0" showAlternateHGridColor="0" canvasBorderAlpha="0" legendShadow ="0" legendBorderAlpha ="0" numDivLines = "4" yaxismaxvalue = "200" showPlotBorder="0" toolTipBorderColor='00417D' > <set label="31/12/2004" value="51.4" color="833F61" /> <set label="31/12/2005" value="88.4" color="833F61" /> <set label="31/12/2006" value="134.8" color="833F61" /> <set label="<b>28/02/2007</b>" value="155.6" color="00417D" /> <trendLines> <line startValue="0" color="000000" displayvalue="" /> </trendLines> <styles> <definition> <style name="myAnim" type="animation" param="_alpha" start="0" duration="1" /> <style name="esthtml" type="font" isHTML="1" /> </definition> <application> <apply toObject="Legend" styles="myAnim" /> <apply toObject="DataLabels" styles="esthtml" /> <apply toObject="ToolTip" styles="esthtml" /> </application> </styles> </graph>
|
|
|
|
|
FusionCharts Team
      
Group: Administrators
Last Login: 2 days ago @ 8:20:12 AM
Posts: 2,194,
Visits: 521
|
|
| Right - it seems I was wrong. Only the tool-tip gets updated. I've pushed this feature in wish lists for next feature and would update you once implemented. Sorry for the confusion.
Thanks, Pallav Nadhani FusionCharts Team
|
|
|
|
|
Forum Newbie
      
Group: Forum Members
Last Login: 3/28/2007 6:32:11 AM
Posts: 3,
Visits: 8
|
|
|
|
|