Generate a Bokeh graph from the results of an SQL Query
Creates a Bokeh Bar Graph visualization from the results of an SQL Query.
Variables
Database to run the SQL Query on.
SQL Query to produce X and Y axis values.
Title for the visualization output.
Predefined Color Palette. For more details on the color palette choices go to https://docs.bokeh.org/en/latest/docs/reference/palettes.html
Name of the column in your SQL Query result that contains the names of your bars.
Label for the X axis.
Display labels along the X axis horizontally or vertically.
Name of the column in your SQL Query result that contains height values for your bars. Only a single column of values is supported.
Label for the Y axis.
Two item list with the minimum value and maximum value allowed. Values lower than the minimum and higher than the maximum will not be displayed on the graph.
Creates a Bokeh Line Graph visualization from the results of an SQL Query.
Variables
Database to run the SQL Query on.
SQL Query to produce X and Y axis values.
Title for the visualization output.
Predefined Color Palette. For more details on the color palette choices go to https://docs.bokeh.org/en/latest/docs/reference/palettes.html
Name of the column in your SQL Query result that contains the values for your X axis.
Label for the X axis.
Type of X axis to generate.
Display labels along the X axis horizontally or vertically.
List of the column names in your SQL query result that contains the values for your Y axis.
Label for the Y axis.
Two item list with the minimum value and maximum value allowed. Values lower than the minimum and higher than the maximum will not be displayed on the graph.
Display a Legend on the graph.
Title displayed in the Legend.
Mapping from the column names in your SQL Query result to names displayed in the Legend.
List items horizontally or vertically in the Legend.
Location of the Legend on the graph.
Creates a Bokeh Table visualization from the results of an SQL Query.
Variables
Database to run the SQL Query on.
SQL Query to produce the table data.
Title for the visualization output.