我可以使用EnhancedLegendRenderer插件获取jqplot图的水平图例。但是我需要在图的底部添加水平图例。有什么建议吗?

最佳答案

发布到堆栈溢出时,您应该始终显示一些工作。它可以帮助我们了解您的问题。

根据您的描述,我认为您在使用EnhancedLedgendRenderer时遇到了问题。

这就是我的代码实现1行3列图例的样子。

          legend: {
        // This renderer is needed for advance legends.
        renderer: jQuery.jqplot.EnhancedLegendRenderer,
        show: true,
        location: 's',
        placement: 'outside',
        // Breaks the ledgend into horizontal.
        rendererOptions: {
          numberRows: '1',
          numberColumns: '3'
        },
        seriesToggle: true
      },

另外,您可能由于标点符号和大写字母不足而投票失败。

关于jqplot - jqplot中图形底部的水平图例,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/15827231/

10-12 20:07