jquery – jqPlot – 水平图例

前端之家收集整理的这篇文章主要介绍了jquery – jqPlot – 水平图例前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
jqPlot可以为图表创建图例.这些例子只显示垂直传说.我想做一个水平的传说.例如,我想要:
X-Label1 X-Label2 X-Label3

不要:

X-Label1
X-Label2
X-Label3

谢谢

解决方法

这很容易实现使用 EnhancedLegendRenderer plugin.只要包含插件和使用类似的选项.
legend:{
    renderer: $.jqplot.EnhancedLegendRenderer,show: true,rendererOptions: {
        numberRows: 1
    }
}

您只需要将numberRows设置为1,因此图例将仅渲染1行.

原文链接:https://www.f2er.com/jquery/179636.html

猜你在找的jQuery相关文章