From 7de08ff2e2622bb804d4b0ab7dde237def787bc9 Mon Sep 17 00:00:00 2001 From: sbosse Date: Mon, 21 Jul 2025 22:49:53 +0200 Subject: [PATCH] Mon 21 Jul 22:43:21 CEST 2025 --- js/dos/ext/vis/docs/data/index.html | 116 ++++++++++++++++++++++++++++ 1 file changed, 116 insertions(+) create mode 100644 js/dos/ext/vis/docs/data/index.html diff --git a/js/dos/ext/vis/docs/data/index.html b/js/dos/ext/vis/docs/data/index.html new file mode 100644 index 0000000..620d486 --- /dev/null +++ b/js/dos/ext/vis/docs/data/index.html @@ -0,0 +1,116 @@ + + + + + + + + + Data - vis.js - A dynamic, browser based visualization library. + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +

Data

+ +

+ One of the starting points of the visualizations of vis.js is that they can deal with dynamic data, and allow manipulation of the data. To enable this, vis.js includes a flexible key/value based DataSet and DataView to handle unstructured JSON data. +

+ +

+ By providing a DataSet with data to the visualizations, they can subscribe on changes in the DataSet and automatically reflect the changes in their view. Changes in the data can be caused by a server pushing updates to a client, or by other interactive components in the web application. Vice versa, data can be manipulated in one of the visualizations. For example a REST-client can listen for changes and automatically write changes to the server. Or changes can be propagated to other parts of the web application. +

+ +

DataSet

+ +

+ A DataSet can be used to store JSON objects by id. Objects can be added, updated and removed from the DatSet, and one can subscribe to changes in the DataSet. + The data in the DataSet can be filtered and ordered, and fields (like + dates) can be converted to a specific type. Data can be normalized when + appending it to the DataSet as well. +

+ +

+ Go to the documentation of DataSet +

+ +

DataView

+ +

+ A DataView offers a filtered and/or formatted view on a DataSet. + One can subscribe to changes in a DataView, and easily get filtered or + formatted data without having to specify filters and field types all + the time. +

+ +

+ Go to the documentation of DataView +

+ +
+ + + + + + + + + \ No newline at end of file