Giter Club home page Giter Club logo

d3plus-react's Introduction

d3plus-react

React components for d3plus visualizations.

Installing

Using npm: npm install d3plus-react

Configuration

A valid d3plus config Object needs to be provided to the config prop of every visualization.

import {Treemap} from "d3plus-react";

const methods = {
  groupBy: "id",
  data: [
    {id: "alpha", value: 29},
    {id: "beta",  value: 10}
  ],
  size: d => d.value
};

<Treemap config={methods} />

Additionally, a global set of styles can be set using the D3plusContext Provider. This allows you to set base styles on all of your visualizations in one place, often in an external file. A component's config set by props will override global defaults key-by-key using a deep cloning function.

import React from "react";
import ReactDOM from "react-dom/client";
import {D3plusContext} from "d3plus-react";
import App from "src/App.jsx";

const globalConfig = {
  shapeConfig: {
    fill: "red"
  }
};

ReactDOM.createRoot(document.getElementById("viz")).render(
  <React.StrictMode>
    <D3plusContext.Provider value={globalConfig}>
      <App />
    </D3plusContext.Provider>
  </React.StrictMode>
);

Update Cycle

In order to detect whether a component should udpate in React, each component does a rudimentary check between the current config object and the incoming new config object. This is done via a simple equality check on the stringified versions of each object. This can also be overridded using the forceUpdate prop:

const shouldUpdate = this.props.forceUpdate ? false : JSON.stringify(oldConfig) === JSON.stringify(newConfig);

This works in most cases, but may not update your visualizations if using an accessor function that references an external variable. For example, if your x accessor is:

const config = {
  ...,
  x: d => d[xVar]
};

...and xVar changes, the visualization will not update. The quick "hack" for this is add xVar to the config object so that it triggers the update via stringify:

const config = {
  ...,
  x: d => d[xVar],
  xVar
};

API Reference


d3plus.AreaPlot() <>

This is a global function, and extends all of the methods and functionality of Viz.


d3plus.BarChart() <>

This is a global function, and extends all of the methods and functionality of Viz.


d3plus.BoxWhisker() <>

This is a global function, and extends all of the methods and functionality of Viz.


d3plus.BumpChart() <>

This is a global function, and extends all of the methods and functionality of Viz.


d3plus.D3plusContext() <>

A React context instance used to provide global config options via a provider (D3plusContext.Provider).

This is a global function.


d3plus.Donut() <>

This is a global function, and extends all of the methods and functionality of Viz.


d3plus.Geomap() <>

This is a global function, and extends all of the methods and functionality of Viz.


d3plus.LinePlot() <>

This is a global function, and extends all of the methods and functionality of Viz.


d3plus.Matrix() <>

This is a global function, and extends all of the methods and functionality of Viz.


d3plus.Network() <>

This is a global function, and extends all of the methods and functionality of Viz.


d3plus.Pack() <>

This is a global function, and extends all of the methods and functionality of Viz.


d3plus.Pie() <>

This is a global function, and extends all of the methods and functionality of Viz.


d3plus.Plot() <>

This is a global function, and extends all of the methods and functionality of Viz.


d3plus.Priestley() <>

This is a global function, and extends all of the methods and functionality of Viz.


d3plus.Radar() <>

This is a global function, and extends all of the methods and functionality of Viz.


d3plus.RadialMatrix() <>

This is a global function, and extends all of the methods and functionality of Viz.


d3plus.Rings() <>

This is a global function, and extends all of the methods and functionality of Viz.


d3plus.Sankey() <>

This is a global function, and extends all of the methods and functionality of Viz.


d3plus.StackedArea() <>

This is a global function, and extends all of the methods and functionality of Viz.


d3plus.Tree() <>

This is a global function, and extends all of the methods and functionality of Viz.


d3plus.Treemap() <>

This is a global function, and extends all of the methods and functionality of Viz.


d3plus.Viz() <>

Creates SVG paths and coordinate points based on an array of data. See this example for help getting started using the geomap generator.

This is a global function.

# .module.exports <>

This is a static property of Viz.

Param Type Default Description
[config] Object {} An object containing method/value pairs to be passed to the visualization's .config( ) method.
[dataFormat] function d3plus.dataFold A custom formatting function to be used when formatting data from an AJAX request. The function will be passed the raw data returned from the request, and is expected to return an array of values used for the data method.
[linksFormat] function d3plus.links(path, formatter) A custom formatting function to be used when formatting links from an AJAX request. The function will be passed the raw data returned from the request, and is expected to return an array of values used for the links method.
[nodesFormat] function d3plus.nodes(path, formatter) A custom formatting function to be used when formatting nodes from an AJAX request. The function will be passed the raw data returned from the request, and is expected to return an array of values used for the nodes method.
[topojsonFormat] function d3plus.topojson(path, formatter) A custom formatting function to be used when formatting topojson from an AJAX request. The function will be passed the raw data returned from the request, and is expected to return an array of values used for the topojson method.

Documentation generated on Wed, 10 May 2023 16:48:14 GMT

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.