(value)
| 129 | |
| 130 | @app.callback(Output('graph-3', 'figure'), Input('signal', 'data')) |
| 131 | def update_graph_3(value): |
| 132 | return generate_figure(value, {'data': [{ |
| 133 | 'type': 'histogram2d', |
| 134 | }]}) |
| 135 | |
| 136 | |
| 137 | @app.callback(Output('graph-4', 'figure'), Input('signal', 'data')) |
nothing calls this directly
no test coverage detected