[email protected] Report post Posted November 4, 2009 Hi, When there's no data for a pie chart. It displays 'No Data to Display' message. Is there a way to stop this message. The end users think that this is a system problem when they see this message on the screeen. <set label="Item A" value="0" color="9B4F96" isSliced="1"/> <set label="Item B" value="0" color="EE2F43"/> <set label="Item C" value="0" color="35006D" /> <set label="Item D" value="0" color="FCB514"/> <set label="Item E" value="0" color="007C59" /> Share this post Link to post Share on other sites
Guest Madhumita Report post Posted November 4, 2009 Hello, It is a functionality of pie chart to display "No Data To Display" when there are all zero values. However, as a workaround, you can try fixing the value to one that is nearly equal to 0. e.g. <chart palette='2' > <set label="Item A" value="0.0001" color="9B4F96" isSliced='1' /> <set label="Item B" value="0.0001" color="EE2F43"/> <set label="Item C" value="0.0001" color="35006D"/> <set label="Item D" value="0.0001" color="FCB514"/> <set label="Item E" value="0.0001" color="007C59" /> </chart> Hope this helps. Share this post Link to post Share on other sites