dash.js中bns在哪个文件
时间: 2024-03-06 20:52:11 浏览: 165
在Dash中,`dash.js`是Dash内部使用的JavaScript库,用于处理与交互相关的功能,其中包括plotly.js的封装。`dash.js`中并没有直接设置`bns`的代码,因为`bns`是plotly.js的配置选项,它是在`dcc.Graph`的`config`属性中设置的。
当用户与图表交互时,`dash.js`会发送请求到Dash后端,后端会根据请求参数生成新的图表,并将其返回给前端。在生成新的图表时,后端会根据`dcc.Graph`的`config`属性中的设置来生成plotly.js的配置,并将其传递给新的图表。因此,`bns`的设置是在后端代码中实现的。
具体来说,在Dash后端代码中,`bns`的默认值是通过`plotly.graph_objs`模块中的`layout`对象来设置的,例如:
```python
import dash
import dash_core_components as dcc
import dash_html_components as html
import plotly.graph_objs as go
app = dash.Dash(__name__)
app.layout = html.Div([
dcc.Graph(
id='example-graph',
figure={
'data': [
{'x': [1, 2, 3], 'y': [4, 1, 2], 'type': 'bar', 'name': 'SF'},
{'x': [1, 2, 3], 'y': [2, 4, 5], 'type': 'bar', 'name': 'Montreal'},
],
'layout': go.Layout(
title='Dash Data Visualization',
barmode='stack',
xaxis={'title': 'X Axis'},
yaxis={'title': 'Y Axis'},
# 设置buffer size为128
bns=128
)
}
)
])
if __name__ == '__main__':
app.run_server(debug=True)
```
在上面的示例中,使用`go.Layout`来设置图表的布局信息,其中包括`bns`的设置。在后端代码中,根据`dcc.Graph`的`config`属性中的设置来生成plotly.js的配置,并将其传递给新的图表。
阅读全文