1
Highcharts我渲染Highcharts圖中這樣的Rails應用程序,它工作正常:渲染內Webix
#container
#report-box
= render 'chart'
不過,我想說明裏面Webix scrollview此圖表。現在,我的代碼看起來像這樣,不工作(沒有錯誤,只有空白的空間,圖表應該是):
#section3{:style => "display:none;"}
#container{:height => "800px", :width => "1100px"}
#report-box
= render 'chart'
webix.ui({view:"layout",
container:"scroll",
rows:[
{view: "scrollview", id: "sections", height: 600,
scroll: "y",
body:{
{ id: "section_3", template: "html->section3", height: 300}
}
]
});
function scroll(id){
$$("sections").showView("section_"+id);
};
我將不勝感激就如何使它工作的任何想法。