Sosuke

Members
  • Content count

    3
  • Joined

  • Last visited

About Sosuke

  • Rank
    Forum Newbie
  1. Some vertical x-axis DataLabels

    Thanks, DataLables have been horizontal thanks to your advice. But, I have a further question about this, are multiple lines on DataLabels not acceptable for you? I would like to have the multiple lines on DataLabels with {br}, for example, 'Name{br}Value'. Please let me know if you have other way to achieve this. Sincerely,
  2. Hi, I want to use custom 'displayValue' with Multi Series Stacked Column 2D Dual Y Chart, and I would like to place those values above each columns. But those values are put in the middle of each data plot, can I display those values above each columns? ~/Gallery/Data/String/MSStCol2DLine1.js ... <dataset> <dataSet seriesName="Product A" color="AFD8F8" showValues="1" valuePosition="ABOVE"> <set value="30" displayValue="Product : 51" /> <set value="26" displayValue="Product : 54" /> <set value="29" displayValue="Product : 68" /> <set value="31" displayValue="Product : 72" /> <set value="34" displayValue="Product : 58" /> </dataSet> <dataSet seriesName="Product B" color="F6BD0F" showValues="1" valuePosition="ABOVE"> <set value="21" displayValue="Product : 51" /> <set value="28" displayValue="Product : 54" /> <set value="39" displayValue="Product : 68" /> <set value="41" displayValue="Product : 72" /> <set value="24" displayValue="Product : 58" /> </dataSet> </dataset> ... Thanks,
  3. Hi, I created a 'MSStackedColumn2DLineDY' chart with JavaScript. 'example.xml' as data source is attached. FusionCharts.setCurrentRenderer('javascript'); var chartObj = new FusionCharts('MSStackedColumn2DLineDY', 'ChartId', "100%", "100%"); chartObj.setXMLUrl('example.xml'); chartObj.render("my_chart"); All x-axis DataLabels are correct on this chart with maximizing window, but when a window is made small, a chart has some vertical DataLabels. I tried 'AUTO' and 'WRAP' on an attribute 'labelDisplay', but this vertical label did not be resolved. I hope that all DataLabels are horizontal per each lines, and long label name can be truncated. Is it possible? Thank, example.xml