0

想要一个简单的 jqplot 轴显示修复。我使用气泡图显示图表,使用 CategoryAxisRenderer 显示轴。

我想要的只是轴以自上而下的方式显示,而不是默认的自下而上。意思是,x轴显示在图表的顶部,从左到右递增,y轴从顶部开始,从上到下递增!!

已经查看了各种内置的 jqplot 选项,但没有运气。恐怕解决方案在于更改 jqplot 轴的 css 定义,但我不希望这样,因为它会花费大量时间来理解别人的 css。请如果有人可以帮助!

4

1 回答 1

0

Have got my solution finally.

  1. Reversed the array that had to be printed row wise, hence both chart and the y axis came up correctly.

  2. The second x axis , did not solve my problem. Instead for the particular chart id , modified the the css class jqplot-xaxis and that did the trick.

    myBubbleChartId .jqplot-xaxis{

    position : absolute;
    top : -20px !important;
    

    }

于 2013-05-13T05:18:48.557 回答