pgAdmin 4 commit: Added support for visualise the graph using a Line ch - Mailing list pgadmin-hackers

From Akshay Joshi
Subject pgAdmin 4 commit: Added support for visualise the graph using a Line ch
Date
Msg-id E1o3yrT-000604-Kc@gothos.postgresql.org
Whole thread Raw
List pgadmin-hackers
Added support for visualise the graph using a Line chart in the query tool. Fixes #7485

Branch
------
master

Details
-------
https://git.postgresql.org/gitweb?p=pgadmin4.git;a=commitdiff;h=93bc1f3c574e333a132908a1d2da63cc00de3011

Modified Files
--------------
.../en_US/images/preferences_dashboard_display.png | Bin 160834 -> 126874 bytes
docs/en_US/images/preferences_dashboard_graphs.png | Bin 140864 -> 131627 bytes
.../en_US/images/preferences_dashboard_refresh.png | Bin 0 -> 145195 bytes
docs/en_US/images/query_data_editing.png           | Bin 23116 -> 23708 bytes
docs/en_US/images/query_execute_section.png        | Bin 105766 -> 96418 bytes
docs/en_US/images/query_graph_toolbar.png          | Bin 0 -> 23562 bytes
docs/en_US/images/query_graph_type.png             | Bin 0 -> 23688 bytes
docs/en_US/images/query_graph_visualiser_panel.png | Bin 0 -> 32228 bytes
docs/en_US/images/query_graph_xaxis.png            | Bin 0 -> 39028 bytes
docs/en_US/images/query_graph_yaxis.png            | Bin 0 -> 38528 bytes
docs/en_US/images/query_line_chart.png             | Bin 0 -> 83984 bytes
docs/en_US/images/query_output_data.png            | Bin 199407 -> 190728 bytes
.../images/query_output_notifications_notify.png   | Bin 69601 -> 83853 bytes
docs/en_US/images/query_tool.png                   | Bin 163388 -> 207866 bytes
docs/en_US/images/query_tool_editable_columns.png  | Bin 163303 -> 146292 bytes
docs/en_US/images/query_tool_macros_execution.png  | Bin 121386 -> 0 bytes
docs/en_US/preferences.rst                         |  57 ++--
docs/en_US/query_tool.rst                          | 126 ++++++--
docs/en_US/query_tool_toolbar.rst                  |   2 +
docs/en_US/release_notes_6_11.rst                  |   1 +
web/package.json                                   |   1 +
web/pgadmin/browser/static/js/panel.js             |  14 +-
web/pgadmin/browser/static/js/panel_view.jsx       |   7 +-
web/pgadmin/dashboard/__init__.py                  |  54 ++--
web/pgadmin/dashboard/static/js/Graphs.jsx         |  21 +-
web/pgadmin/static/js/chartjs/index.jsx            |  28 +-
.../static/js/components/FormComponents.jsx        |   4 +-
web/pgadmin/tools/sqleditor/__init__.py            |  44 +++
.../tools/sqleditor/static/js/SQLEditorModule.js   |   1 +
.../static/js/components/QueryToolComponent.jsx    |   7 +-
.../static/js/components/QueryToolConstants.js     |   2 +
.../js/components/sections/GraphVisualiser.jsx     | 343 +++++++++++++++++++++
.../static/js/components/sections/ResultSet.jsx    |  21 ++
.../js/components/sections/ResultSetToolbar.jsx    |   8 +
web/pgadmin/utils/constants.py                     |   1 +
web/pgadmin/utils/driver/psycopg2/connection.py    |  19 ++
web/regression/javascript/dashboard/graphs_spec.js |  11 +-
web/yarn.lock                                      |  12 +
38 files changed, 689 insertions(+), 95 deletions(-)


pgadmin-hackers by date:

Previous
From: Nikhil Mohite
Date:
Subject: [pgAdmin][RM-7460]: pgAdmin stuck while creating a new index
Next
From: Akshay Joshi
Date:
Subject: pgAdmin 4 commit: Fixed an issue where passwords entered in the 'Connec