nilesh1021 Report post Posted April 4, 2013 Hi I want to use userdefinr tooltip in json of zoom line chart. I have licence version of Fusion chart XT. Json is as follows: { "chart": { "compactdatamode": "1", "dataseparator": "|", "caption": "Adobe Inc.", "subcaption": "Daily from 2009-2010. Source: Yahoo Finance.", "axis": "linear", "numberprefix": "$", "formatnumberscale": "0", "allowpinmode": "0", "enableiconmousecursors": "0", "dynamicaxis": "1", "palette": "3" }, "categories": [ { "category": "8/4/2010|8/3/2010|8/2/2010" } ], "dataset": [ { "seriesname": "Close", "data": "29.7|29.12|29.6|" } ]} Share this post Link to post Share on other sites
Guest Sashibhusan Report post Posted April 5, 2013 Hi, Could you please try using "toolText" for each data item inside the data object (without using compact data format)? Ref. Code: { "chart": { "compactdatamode": "1", .... }, "categories": [ { "category": "8/4/2010|8/3/2010|8/2/2010" } ], "dataset": [ { "seriesname": "Close", "data":[{ "value":"300", "toolText":"Custom ToolText1" }, { "value":"349", "toolText":"Custom ToolText1" }, } ]} Please note that compact data format does not support displayValue and toolText for each data item. However, standard data format does accept it Hope this helps! Share this post Link to post Share on other sites