我有以下 HTML 和 JS 代码(粘贴在下面)来创建 Bokeh-JS 饼图。但它没有给出预期的结果。散景图没有嵌入到 HTML 代码的 div 元素中。
我在这里错过了什么吗?我还附上了代码的输出。
HTML 代码:
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="http://cdn.bokeh.org/bokeh/release/bokeh-0.12.13.min.css">
<link rel="stylesheet" href="http://cdn.bokeh.org/bokeh/release/bokeh-widgets-0.12.13.min.css">
<link rel="stylesheet" href="http://cdn.bokeh.org/bokeh/release/bokeh-tables-0.12.13.min.css">
<style>
.floating-box {
display: inline-block;
width: 150px;
height: 75px;
margin: 10px;
border: 3px solid #73AD21;
}
</style>
<title></title>
</head>
<body>
<div id="container">
<div id="button">
<button id="pie_report" type='button' value="Pie Report"
name="Pie Report" class="button button1" onClick="execute()">Pie_Report</button>
</div>
<div id="bokeh_ch1" class="floating-box">
</div>
<div id="bokeh_ch2" class="floating-box">
</div>
</div>
</body>
<script src="http://cdn.bokeh.org/bokeh/release/bokeh-0.12.13.min.js"></script>
<script src="http://cdn.bokeh.org/bokeh/release/bokeh-widgets-0.12.13.min.js"></script>
<script src="http://cdn.bokeh.org/bokeh/release/bokeh-tables-0.12.13.min.js"></script>
<script src="http://cdn.bokeh.org/bokeh/release/bokeh-api-0.12.13.min.js"></script>
<script type="text/javascript" src="my_js.js"></script>
</html>
my_js.js 文件代码:
function execute(){
var plt = Bokeh.Plotting;
var pie_data = {
labels: ['Work', 'Eat', 'Commute', 'Sport', 'Watch TV', 'Sleep'],
values: [8, 2, 2, 4, 0, 8],
};
var inc_sr={labels:['incident','Sr'],
values: [53,65]
};
var p0 = Bokeh.Charts.pie(inc_sr,{palette:['#FF8C00' ,'#A0522D'],
inner_radius: 0.0,width:20,height:20,
start_angle: Math.PI / 2,
end_angle: 5 * Math.PI / 2
});
var p1 = Bokeh.Charts.pie(pie_data);
document.getElementById('bokeh_ch1').innerHTML=plt.show(p0);
document.getElementById('bokeh_ch2').innerHTML=plt.show(p1);
}