krishna_89 Report post Posted February 6, 2014 Hi,, I am using Powercharts V3.3.1 I need on help of few things below. 1. Align the cell content to left in Heat map chart (Imporant) 2. Need to place the x-axis labels on the top of the chart 3. Need to place the legends on the top of the chart. Need to check is ter any property to set for these functionalities, or I need to modify anyting Thanks in advance Regards Krishna Kumar S Share this post Link to post Share on other sites
Guest Sashibhusan Report post Posted February 7, 2014 Hi Krishna, Please find the response to your queries inline, below: 1. Align the cell content to left in Heat map chart (Imporant) >>If you are willing to align the value displayed in each cell to left, you could provide the displayed value as string in either "tlLabel" or "blLabel" attribute if <set> element of your Heatmap data. Ref. XML code snippet: <!-- Provide a space in the displayValue attribute--> <set rowId='Yahoo' columnId='Mon' tlLabel='7.52%' value='0' displayValue=' ' /> 2. Need to place the x-axis labels on the top of the chart >>Can you try using “placeXAxisLabelsOnTop” attribute to "1" in the chart element? 3. Need to place the legends on the top of the chart. >>This feature is not supported by latest PowerCharts XT. Only you could position the legend to bottom or right, by setting "legendPosition" to "BOTTOM" or "RIGHT" in the chart element. For more details on "Heat Map Chart Specification Sheet", please visit the documentation link: http://docs.fusioncharts.com/powercharts/Contents/ChartSS/HeatMap.html Hope this helps! Share this post Link to post Share on other sites
krishna_89 Report post Posted February 7, 2014 Hi Thanks for you response. if I use tLabel {br} tag is not working I want to display the content in 4 lines <set rowId='Yahoo' columnId='Mon' tlLabel='first one: 7.52%{br}second one: 8.52%{br}first one: 7.52%{br}second one: 8.52%' value='0' displayValue=' ' /> any other way to achieve this. Regards Krishna Share this post Link to post Share on other sites
Guest Sashibhusan Report post Posted February 10, 2014 Hi Krishna, Please note that for long labels to display in "tlLabel" attribute, due to the unavailability of space in top left portion of the cell, the HeatMap chart will automatically truncate the text and put ellipses at the end of it and the entire text could be shown on mouse hover over the call, as tooltip. So, if you are willing to show the complete text within the cell, you would need to provide the text label in the "displayValue" attribute, but the left alignment feature will not be achieved. Hope this helps! Share this post Link to post Share on other sites