Micheal Shinn Report post Posted October 30, 2008 I've created a chart that has a trendline on it. The trendline value is displayed as "Primary NAAQS Standard". My boss would like to see it displayed as Primary NAAQS Standard Is this possible? Share this post Link to post Share on other sites
Arindam Report post Posted October 31, 2008 (edited) Hi, Could you please use style for this supports? if you are useing dataXML: <trendLines> <line startvalue='24' displayValue='Primary%26lt;BR%26gt;NAAQS%26lt;BR%26gt;Standard' color='FF0000' thickness='1' isTrendZone='0' /> </trendLines> <styles> <definition> <style name='myHTMLFont' type='font' isHTML='1' /> </definition> <application> <apply toObject='TRENDVALUES' styles='myHTMLFont' /> </application> </styles> if you are useing DataURL: <line startvalue='24' displayValue='Primary<BR>NAAQS<BR>Standard' color='FF0000' thickness='1' isTrendZone='0' /> Note: %26lt;BR%26gt; , <BR> here BR must be upper case Edited October 31, 2008 by Guest Share this post Link to post Share on other sites