0

Customization of radar chart in ireport designer

asked 2014-05-07 06:33:54 +0800

tejas gravatar image tejas
1

I am trying to design a report which contains radar chart .But I am not able to show label of plotted point on graph.I also need to know how to specify control over spider levels in background.

delete flag offensive retag edit

1 Answer

Sort by » oldest newest most voted
0

answered 2014-05-09 05:47:12 +0800

RaymondChao gravatar image RaymondChao
386 1 4
ZK Team

updated 2014-05-09 05:47:38 +0800

Hello.

Did you want to show label of each point on the graph? You can try to use DataLabels. For example:

    // create DataLabels
    DataLabels dataLabels = new DataLabels();
    // enable it
    dataLabels.setEnabled(true);
    // set format as you like
    dataLabels.setFormat("{y} unit");

    // apply it to the series
    chart.getSeries().setDataLabels(dataLabels);

    // or apply it to the point
    chart.getSeries(1).getPoint(2).setDataLabels(dataLabels);
link publish delete flag offensive edit
Your answer
Please start posting your answer anonymously - your answer will be saved within the current session and published after you log in or create a new account. Please try to give a substantial answer, for discussions, please use comments and please do remember to vote (after you log in)!

[hide preview]

Question tools

Follow
1 follower

RSS

Stats

Asked: 2014-05-07 06:33:54 +0800

Seen: 11 times

Last updated: May 09 '14

Support Options
  • Email Support
  • Training
  • Consulting
  • Outsourcing
Learn More