为什么我的 jqPlot 没有渲染画布?

发布于 2024-12-18 19:08:03 字数 566 浏览 1 评论 0原文

我正在尝试使用 jqPlot 绘制条形图,但无法让它显示任何内容。

我已经包含了 jqPlot 代码和所有插件。我没有收到任何错误,

我直接复制了示例代码:

html:

<div id="jqplot" class="plot">

</div>

Javascript:

"use strict";
(function ($){

        $.jqplot('jqplot',  [[[1, 2],[3,5.12],[5,13.1],[7,33.6],[9,85.9],[11,219.9]]]);

})(jQuery);

它将类“jqplot-target”添加到“jqplot”div,因此javascript必须正常工作,但它没有添加画布/图表到 div,它只显示一个空的 div 以及添加的类。

有什么想法为什么这没有渲染吗?

我也在使用 html5boilerplate,但我找不到它们两个的任何已知问题。

谢谢,

托马斯

I am trying to use jqPlot for a bar graph and I can't get it to show anything.

I have included the jqPlot code and all the plugins. I am not receiving any errors whatsoever

I have copied the example code directly:

html:

<div id="jqplot" class="plot">

</div>

Javascript:

"use strict";
(function ($){

        $.jqplot('jqplot',  [[[1, 2],[3,5.12],[5,13.1],[7,33.6],[9,85.9],[11,219.9]]]);

})(jQuery);

It is adding the class 'jqplot-target' to the 'jqplot' div so the javascript must be working, yet it is not adding a canvas/chart to the div, it displays just an empty div with the added class to it.

Any ideas why this is not rendering?

I am using html5boilerplate as well, but I can't find any known issues with the two of them.

Thanks,

Thomas

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

木落 2024-12-25 19:08:04

你能展示你的 CSS 对“plot”类做了什么吗? jqPlot 使用页面 表示您需要确保添加宽度和到绘图目标的高度。

Can you show what your CSS is doing to the class "plot"? The jqPlot Usage page says that you need to be sure to add width and height to the plot target.

掀纱窥君容 2024-12-25 19:08:04

单击按钮时,在生成的图表上使用replot 函数。

// create your chart
var plot1 = $.jqplot(...);

// hook the button press
$("button#enter").on("click", function(){
    // fade your tab in, wait for it to complete,
    $(".tab").fadeIn(1000, function(){
        // then replot, if not already drawn
        if(!plot1._drawCount){
            plot1.replot();
        }
    });
});

http://www.jqplot.com/deploy/dist/examples/hiddenPlotsInTabs.html

Use the replot function on the generated chart, when you click on your button.

// create your chart
var plot1 = $.jqplot(...);

// hook the button press
$("button#enter").on("click", function(){
    // fade your tab in, wait for it to complete,
    $(".tab").fadeIn(1000, function(){
        // then replot, if not already drawn
        if(!plot1._drawCount){
            plot1.replot();
        }
    });
});

http://www.jqplot.com/deploy/dist/examples/hiddenPlotsInTabs.html

木緿 2024-12-25 19:08:04

我之前遇到过这个问题,由于某种原因,以下 jqplot 代码无法工作:

$(document).ready(function () {
    $.jqplot('chart1', [[[1, 2], [3, 5.12], [5, 13.1], [7, 33.6], [9, 85.9], [11, 219.9]]]);
}

但是,当我将 $(document).ready(function{...} 切换为 jQuery(function ($){..} 时jqplot 代码工作正常。

jQuery(function ($) {
    $.jqplot('chart1', [[[1, 2], [3, 5.12], [5, 13.1], [7, 33.6], [9, 85.9], [11, 219.9]]]);
}

I ran into this issue earlier, for some reason the following jqplot code wouldn't work:

$(document).ready(function () {
    $.jqplot('chart1', [[[1, 2], [3, 5.12], [5, 13.1], [7, 33.6], [9, 85.9], [11, 219.9]]]);
}

However, when I switched the $(document).ready(function{...} to jQuery(function ($){..} the jqplot code worked properly.

jQuery(function ($) {
    $.jqplot('chart1', [[[1, 2], [3, 5.12], [5, 13.1], [7, 33.6], [9, 85.9], [11, 219.9]]]);
}
梦初启 2024-12-25 19:08:03

我发现了问题。我将 jqplot 所在的主容器 div 设置为在页面加载时显示:无,一旦您单击“输入”按钮,就会显示 .fadeIn()

我想当显示父级时它无法添加画布:没有任何; - 我通过在用户单击 Enter 后在主容器中淡入淡出的函数内调用 $.jqplot 来使其工作...

I found the problem. I had the main container div that the jqplot is inside set to display:none on page load and once you click the 'enter' button is shows with .fadeIn()

I suppose it can't add the canvas when the parent is display: none; - I've got it to work by calling the $.jqplot inside the function that fades in the main container after the user clicks enter...

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文