A word from our sponsors

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

sw:d3js:intro [2017/11/08 06:34] – created Frank Fegertsw:d3js:intro [2017/11/08 07:27] (current) Frank Fegert
Line 1: Line 1:
 ====== Introduction ====== ====== Introduction ======
  
-D3.js (Data-Driven Documents) is a JavaScript library for manipulating documents based on data. D3 helps you bring data to life using HTML, SVG, and CSS. D3s emphasis on web standards gives you the full capabilities of modern browsers without tying yourself to a proprietary framework, combining powerful visualization components and a data-driven approach to DOM manipulation.+D3.js (Data-Driven Documents) is a JavaScript library for manipulating documents based on data. D3 helps you bring data to life using HTML, SVG, and CSS. D3?s emphasis on web standards gives you the full capabilities of modern browsers without tying yourself to a proprietary framework, combining powerful visualization components and a data-driven approach to DOM manipulation.
  
 D3 allows you to bind arbitrary data to a Document Object Model (DOM), and then apply data-driven transformations to the document. For example, you can use D3 to generate an HTML table from an array of numbers. Or, use the same data to create an interactive SVG bar chart with smooth transitions and interaction. D3 allows you to bind arbitrary data to a Document Object Model (DOM), and then apply data-driven transformations to the document. For example, you can use D3 to generate an HTML table from an array of numbers. Or, use the same data to create an interactive SVG bar chart with smooth transitions and interaction.
  
-D3 is not a monolithic framework that seeks to provide every conceivable feature. Instead, D3 solves the crux of the problem: efficient manipulation of documents based on data. This avoids proprietary representation and affords extraordinary flexibility, exposing the full capabilities of web standards such as HTML, SVG, and CSS. With minimal overhead, D3 is extremely fast, supporting large datasets and dynamic behaviors for interaction and animation. D3s functional style allows code reuse through a diverse collection of official and community-developed modules. +D3 is not a monolithic framework that seeks to provide every conceivable feature. Instead, D3 solves the crux of the problem: efficient manipulation of documents based on data. This avoids proprietary representation and affords extraordinary flexibility, exposing the full capabilities of web standards such as HTML, SVG, and CSS. With minimal overhead, D3 is extremely fast, supporting large datasets and dynamic behaviors for interaction and animation. D3?s functional style allows code reuse through a diverse collection of official and community-developed modules. 
  
 ====== Links ====== ====== Links ======
Line 21: Line 21:
  
 ====== Files and Directories ====== ====== Files and Directories ======
- 
-FIXME 
  
 ===== General Files and Directories ===== ===== General Files and Directories =====
  
-FIXME+^ File                  ^ Description                                               ^ 
 +| ''d3.js''             | The main D3 JavaScript library code.                      | 
 +| ''d3.min.js''         | A minified versiont of the D3 JavaScript library code.    |
  
 ===== Configuration Files ===== ===== Configuration Files =====
  
-FIXME+None
  
 ====== Getting Help ====== ====== Getting Help ======
  
-FIXME+See: [[https://github.com/d3/d3/wiki|Dokumentation / Wiki]]\\
  
-Manual pages+Readme file
  
 <cli> <cli>
-user@host:~$ +user@host:~$ less README.md
 </cli> </cli>
  
 ====== Install ====== ====== Install ======
  
-FIXME+To install //D3.js// on Debian:
  
-To install //// on Debian+<cli> 
 +root@host:~$ wget https://unpkg.com/d3/build/d3.min.js 
 +</cli>  
 + 
 +To install //D3.js// with NPM:
  
 <cli> <cli>
-root@host:~$ +root@host:~$ npm install d3
 </cli>  </cli> 
  
 ====== Configuration ====== ====== Configuration ======
  
-FIXME+None
  
 ====== Usage ====== ====== Usage ======
Line 62: Line 66:
 ===== Status Check ===== ===== Status Check =====
  
-FIXME +None
- +
-To check the status of ////:  +
- +
-<cli> +
-root@host:~$  +
-</cli>+
  
 ====== Recipies ====== ====== Recipies ======
Line 78: Line 76:
 ====== Known Issues ====== ====== Known Issues ======
  
-FIXME+None