Hi,
I’m using raw html as a dash component. On page load, everything works fine.
I have to update the table data on click of the bar chart.
layout = '''
<html>
<body>
<table>
<thead>
<tr>
<th>product</th>
<th>result</th>
</tr>
</thead>
<tbody>
<tr>
<td>Apple</td>
<td>Good</td>
</tr>
app = dash.Dash(server=server, routes_pathname_prefix="/dashboard/", index_string=layout)
barGraph = dcc.Graph(id='queuePlot',
figure={'data': [{'x': [1, 2, 3]}]}
)
app.layout = html.Div([
html.Div([
barGraph
])
])
- Is there any approach there for click event without using callback?
- How to bind the table data using above approach?