(value)
| 114 | |
| 115 | @app.callback(Output('graph-2', 'figure'), Input('signal', 'data')) |
| 116 | def update_graph_2(value): |
| 117 | return generate_figure( |
| 118 | value, { |
| 119 | 'data': [{ |
| 120 | 'type': 'scatter', |
| 121 | 'mode': 'lines', |
| 122 | 'line': { |
| 123 | 'shape': 'spline', |
| 124 | 'width': 0.5 |
| 125 | }, |
| 126 | }] |
| 127 | }) |
| 128 | |
| 129 | |
| 130 | @app.callback(Output('graph-3', 'figure'), Input('signal', 'data')) |
nothing calls this directly
no test coverage detected