diff --git a/plugins/ui/docs/Plotting.md b/plugins/ui/docs/Plotting.md index 35445ed6d..2cbeb764a 100644 --- a/plugins/ui/docs/Plotting.md +++ b/plugins/ui/docs/Plotting.md @@ -1,10 +1,10 @@ -# Plotting and dh.ui +# Plotting and deephaven.ui -Creating dynamic plots that respond to user input is a common task in data analysis. The `dh.ui` module provides a simple interface for creating interactive plots using the `deephaven-express` library. This guide will show you how to create plots that updates based on user input. +Creating dynamic plots that respond to user input is a common task in data analysis. The `deephaven.ui` module provides a simple interface for creating interactive plots using the `deephaven-express` library. This guide will show you how to create plots that updates based on user input. ## Plotting a filtered table -This example demonstrates how to create a simple line plot that updates based on user input. The plot will display the price of a stock filtered based on the stock symbol entered by the user. Here we have used a `ui.text_field` to get the value, but it could be driven by any dh.ui input, including double clicking on a value from a `ui.table`. We've previously referred to this sort of behaviour as a "one-click" component in enterprise, as the plot updates as soon as the user enters a filter. +This example demonstrates how to create a simple line plot that updates based on user input. The plot will display the price of a stock filtered based on the stock symbol entered by the user. Here we have used a `ui.text_field` to get the value, but it could be driven by any deephaven.ui input, including double clicking on a value from a `ui.table`. We've previously referred to this sort of behaviour as a "one-click" component in enterprise, as the plot updates as soon as the user enters a filter. ```python import deephaven.plot.express as dx diff --git a/plugins/ui/docs/components/view.md b/plugins/ui/docs/components/view.md index 393a62c62..ddf1d9875 100644 --- a/plugins/ui/docs/components/view.md +++ b/plugins/ui/docs/components/view.md @@ -25,7 +25,7 @@ view = ui.view( Recommendations for creating views: -1. Views are analogous to HTML