monsieurmark Report post Posted March 4, 2014 Hi all! Any idea what this white box circled in this image is and how you format it (bg color etc)???? Only tried everything... Cheers, mark Share this post Link to post Share on other sites
Haritha Report post Posted March 5, 2014 Hi Mark, The box that appears over the X-axis labels is the Overlay Label. It appears when the mouse cursor hovers over dataplots. This label displays the datalabel of the dataplot which is currently being hovered over. When the mouse cursor is dragged over the dataplots for zooming, two overlay labels appear below the X axis indicating the start point and end point of selection. If not set, it takes font color set in the "baseFontColor". It is because of this reason that it appears to be blank. You may change various properties like the background color, font color, font size etc of this label by applying styles to the object "OVERLAYLABEL". Eg. Place this below all the datasets and before the closing tag of chart. <styles> <definition> <style name='MyFirstFontStyle' type='font' font='Verdana' size='12' color='FF0000' bold='1' bgColor='FFFFDD' /> </definition> <application> <apply toObject='OVERLAYLABEL' styles='MyFirstFontStyle' /> </application> </styles> For more information on overlay label, refer : http://docs.fusioncharts.com/charts/contents/index.html?ChartSS/ZoomLine.html For information on font type of style, refer : http://docs.fusioncharts.com/charts/contents/index.html?Styles/Font.html Hope this helps. Share this post Link to post Share on other sites
monsieurmark Report post Posted March 5, 2014 Thanks gain, it does indeed, it worked a treat. Share this post Link to post Share on other sites