Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    FacetChart.setShowDataValues(Boolean.TRUE) - largest value cut off

    Hello,
    If I set chart.setShowDataValues(Boolean.TRUE) for a bar chart, all of the data values appear nicely at the end of the bars except, the largest bar's value becomes truncated. Instead of showing 30, it shows 3.
    Thanks

    Code:
    final FacetChart chart = new FacetChart();
    chart.setData(aRecordList);
    chart.setFacets(new Facet("name", "Type"));
    chart.setValueProperty("count");
    chart.setChartType(ChartType.BAR);
    chart.setShowDataValues(Boolean.TRUE);
    chart.setWidth(300);
    chart.setHeight(300);
    Window window = new Window();
    window.setWidth(410);
    window.setHeight(410);
    window.addItem(chart);
    window.show();
    FF 24.6.0
    SmartClient Version: v9.1p_2014-06-17/Pro Deployment (built 2014-06-17)
    Attached Files

    #2
    I apologize, I posted this in the wrong section. Please advise if I should re-post in proper forum.
    Thanks

    Comment


      #3
      Hello,
      Just following up to be sure this issue is being tracked or if I need to repost to the Smart GWT Technical Q&A forum.
      Thanks

      Comment


        #4
        No need to repost - we'll take a look and respond here (bearing in mind you are using SmartGWT rather than SmartClient / JavaScript directly)

        You can expect a follow up in the next day or two

        Regards
        Isomorphic Software

        Comment


          #5
          We've now made a framework change to address this issue. Please try the next nightly build, dated June 25 or above

          Regards
          Isomorphic Software

          Comment


            #6
            Thank you, will pick up the new build as soon as possible.

            Comment

            Working...
            X