All Projects → britecharts → britecharts-react

britecharts / britecharts-react

Licence: Apache-2.0 license
Britecharts-react is a React wrapper for the Britecharts charting library. It allows the use of Britecharts charts within a React application.

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to britecharts-react

Britecharts
Client-side reusable Charting Library based on D3.js v5 that allows easy and intuitive use of charts and components that can be composed together creating amazing visualizations.
Stars: ✭ 3,688 (+3252.73%)
Mutual labels:  d3, chart, interactive-visualizations, britecharts
C3
📊 A D3-based reusable chart library
Stars: ✭ 9,163 (+8230%)
Mutual labels:  d3, chart, interactive-visualizations
Markvis
make visualization in markdown. 📊📈
Stars: ✭ 1,509 (+1271.82%)
Mutual labels:  d3, chart
React D3 Components
D3 Components for React
Stars: ✭ 1,599 (+1353.64%)
Mutual labels:  d3, chart
V Chart Plugin
Easily bind a chart to the data stored in your Vue.js components.
Stars: ✭ 188 (+70.91%)
Mutual labels:  d3, chart
React Charts
⚛️ Simple, immersive & interactive charts for React
Stars: ✭ 1,302 (+1083.64%)
Mutual labels:  d3, chart
D3.chart.sankey
Reusable D3 Sankey diagram using d3.Chart
Stars: ✭ 103 (-6.36%)
Mutual labels:  d3, chart
Visx
🐯 visx | visualization components
Stars: ✭ 14,544 (+13121.82%)
Mutual labels:  d3, chart
Ac D3
Javascript Library for building Audiovisual Charts in D3
Stars: ✭ 76 (-30.91%)
Mutual labels:  d3, chart
Chart Tool
A responsive charting application
Stars: ✭ 244 (+121.82%)
Mutual labels:  d3, chart
Visavail
A D3.js Time Data Availability Visualization
Stars: ✭ 245 (+122.73%)
Mutual labels:  d3, chart
multi-chart
lit-element building blocks for charts and visualization (based on d3.js v5)
Stars: ✭ 24 (-78.18%)
Mutual labels:  d3, chart
Diffract
A set of d3 based visualization components built for React
Stars: ✭ 87 (-20.91%)
Mutual labels:  d3, chart
Just Dashboard
📊 📋 Dashboards using YAML or JSON files
Stars: ✭ 1,511 (+1273.64%)
Mutual labels:  d3, chart
Ember C3
📈 Ember addon library for C3, a D3-based reusable chart library.
Stars: ✭ 81 (-26.36%)
Mutual labels:  d3, chart
Sunburstr
R htmlwidget for interactive sunburst plots
Stars: ✭ 177 (+60.91%)
Mutual labels:  d3, chart
Simple-charts
Simple responsive charts
Stars: ✭ 15 (-86.36%)
Mutual labels:  d3, chart
D3 Spotmatrix
Open Source Javascript Library to render Spot Matrix Charts using D3.js
Stars: ✭ 12 (-89.09%)
Mutual labels:  d3, chart
D3.js Network Topology
网络拓扑图
Stars: ✭ 60 (-45.45%)
Mutual labels:  d3, chart
Reaviz
📊 Data visualization library for React based on D3
Stars: ✭ 215 (+95.45%)
Mutual labels:  d3, chart

Britecharts React

Britecharts-react is a React wrapper for the Britecharts charting library.

Build Status npm version License PRs Welcome All Contributors Twitter Follow

Stacked Area Chart Bar Chart Line Chart
Donut Chart Legend Tooltip
Sparkline Chart

Usage

Import components from Britecharts-React:

//ES6 import syntax
import { StackedArea } from 'britecharts-react';

//CommonJS require syntax
const { StackedArea } = require('britecharts-react');

Britecharts-React components are used just like any other stateless React component. You will pass in some props, and it would render a chart:

<StackedArea
    data={stackedAreaData.with2Sources()}
    width={600}
    height={400}
/>

API

Each component's API will be a reflection of Britecharts charts and their APIs. That way, if we need to render a bar chart, we will first check the bar chart's API in the main project API reference page. You can read more about the approach here

From there, we will proceed to pass each of the configurations through the usual props as we do in React projects:

<Bar
    data={barData.with2Entries()}
    width={400}
    isHorizontal={true}
    margin={marginObject}
>

The complete set of components is in progress; the following components are currently implemented and available for use:

The following components haven't been migrated yet from Britecharts:

  • Brush charts
  • Heatmaps
  • Mini Tooltips
  • Scatter Plots

If you need to use one of the missing charts, check out our how-to guide for creating new charts.

Installation

Britecharts-React is available as an NPM module or through CDN links (in different formats or a bundle).

You can also use individual bundles in UMD format (dist/umd/), CommonJS format (lib/cjs), and tree-shaking-enabling ES2015 modules (lib/esm) to add to your bundle. You can see more on our test project.

Developers also need to load the stylesheets located in dist/britecharts-react.min.css to style the charts correctly.

Next steps

We are accepting PRs for creating wrappers for Britecharts components. Check our contributing guide, drop by the #britecharts channel in the d3 slack, or create an issue if you want to know more.

Acknowledgments

For this project, we have followed the approach called ‘Mapping Lifecycle methods’ based on Nicholas Hery's article. We want to recognize all the contributors in the parent project Britecharts.

See Also

License

Copyright 2017 Eventbrite

Licensed under the Apache License, Version 2.0 (the “License”); you may not use this file except in compliance with the License. You may obtain a copy of the License at

https://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an “AS IS” BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

Read more in the license document.

Contributors

Thanks goes to these wonderful people (emoji key):

David Gómez
David Gómez

💻 🤔 🚧 👀

This project follows the all-contributors specification. Contributions of any kind welcome!

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].