我想在引导模式下显示一个图表。代码如下:但是它不工作,图表不显示。如何解决这个问题?
<div id="myModel" class="modal fade" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div id="chart1" style="height:300px; width:600px;"></div>
</div><!-- /.modal -->
<script class="code" type="text/javascript">
$(document).ready(function(){
var line1=[['23-May-08', 578.55], ['20-Jun-08', 566.5], ['25-Jul-08', 480.88], ['22-Aug-08', 509.84];
var plot1 = $.jqplot('chart1', [line1], {
title:'Data Point Highlighting',
axes:{
xaxis:{
renderer:$.jqplot.DateAxisRenderer,
tickOptions:{
formatString:'%b %#d'
}
},
yaxis:{
tickOptions:{
formatString:'$%.2f'
}
}
});
$('#myModal').bind('shown',function() {
plot1.replot();
});
});
</script>
3条答案
按热度按时间fruv7luv1#
你必须在显示complelete模态框后显示char
在bootstrap 3中:
6psbrbz92#
尝试绘制图表后,模态如下:
emeijp433#
我知道这是一个过时的问题,但是我最近在使用react、react-bootstrap和chartjs时遇到了类似的问题-a在尝试在模态中呈现图表之前从未遇到过问题。如果您遇到类似的问题,并且正在使用react with bootstrap和react-bootstrap库,可以使用
onEntered
事件。对于我的场景,有条件地呈现图表,使用在调用isEntered
的回调时更新的状态,很好地解决了这个问题。如果一个代码片段可以帮助任何人,请lmk。
react-bootstrap组件库模态文档:https://react-bootstrap.github.io/components/modal/#api