New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

react-fusioncharts

Package Overview
Dependencies
Maintainers
1
Versions
19
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-fusioncharts - npm Package Compare versions

Comparing version 2.0.4 to 2.0.5

2

package.json
{
"name": "react-fusioncharts",
"version": "2.0.4",
"version": "2.0.5",
"description": "Simple and Lightweight React component for FusionCharts JavaScript Charting Library",

@@ -5,0 +5,0 @@ "main": "lib/ReactFC.js",

@@ -28,49 +28,26 @@ # react-fusioncharts

import Charts from 'fusioncharts/fusioncharts.charts';
import FusionTheme from 'fusioncharts/themes/fusioncharts.theme.fusion';
import ReactFC from 'react-fusioncharts';
import FusionTheme from 'fusioncharts/themes/fusioncharts.theme.fusion';
ReactFC.fcRoot(FusionCharts, Charts, FusionTheme);
const myDataSource = {
"chart": {
"caption": "Countries With Most Oil Reserves [2017-18]",
"subCaption": "In MMbbl = One Million barrels",
"xAxisName": "Country",
"yAxisName": "Reserves (MMbbl)",
"numberSuffix": "K",
"theme": "fusion"
// DataSource A
const dataSource = {
chart: {
caption: 'Countries With Most Oil Reserves [2017-18]',
subCaption: 'In MMbbl = One Million barrels',
xAxisName: 'Country',
yAxisName: 'Reserves (MMbbl)',
numberSuffix: 'K',
theme: 'fusion'
},
"data": [
{
"label": "Venezuela",
"value": "290"
},
{
"label": "Saudi",
"value": "260"
},
{
"label": "Canada",
"value": "180"
},
{
"label": "Iran",
"value": "140"
},
{
"label": "Russia",
"value": "115"
},
{
"label": "UAE",
"value": "100"
},
{
"label": "US",
"value": "30"
},
{
"label": "China",
"value": "30"
}
data: [
{ label: 'Venezuela', value: '290' },
{ label: 'Saudi', value: '260' },
{ label: 'Canada', value: '180' },
{ label: 'Iran', value: '140' },
{ label: 'Russia', value: '115' },
{ label: 'UAE', value: '100' },
{ label: 'US', value: '30' },
{ label: 'China', value: '30' }
]

@@ -80,13 +57,10 @@ };

const chartConfigs = {
type: 'column2d',
width: 600,
height: 400,
dataFormat: 'json',
dataSource: myDataSource,
type: 'column2d',
width: 600,
height: 400,
dataFormat: 'json',
dataSource: dataSource
};
ReactDOM.render(
<ReactFC {...chartConfigs} />,
document.getElementById('root'),
);
ReactDOM.render(<ReactFC {...chartConfigs} />, document.getElementById('root'));
```

@@ -104,70 +78,34 @@

import World from 'fusioncharts/maps/fusioncharts.world';
import FusionTheme from 'fusioncharts/themes/fusioncharts.theme.fusion';
import ReactFC from 'react-fusioncharts';
import FusionTheme from 'fusioncharts/themes/fusioncharts.theme.fusion';
ReactFC.fcRoot(FusionCharts, Maps, World, FusionTheme);
const myDataSource = {
"chart": {
"caption": "Average Annual Population Growth",
"subcaption": " 1955-2015",
"numbersuffix": "%",
"includevalueinlabels": "1",
"labelsepchar": ": ",
"entityFillHoverColor": "#FFF9C4",
"theme": "fusion"
// Data Source B
const dataSource = {
chart: {
caption: 'Average Annual Population Growth',
subcaption: ' 1955-2015',
numbersuffix: '%',
includevalueinlabels: '1',
labelsepchar: ': ',
entityFillHoverColor: '#FFF9C4',
theme: 'fusion'
},
"colorrange": {
"minvalue": "0",
"code": "#FFE0B2",
"gradient": "1",
"color": [
{
"minvalue": "0.5",
"maxvalue": "1.0",
"color": "#FFD74D"
},
{
"minvalue": "1.0",
"maxvalue": "2.0",
"color": "#FB8C00"
},
{
"minvalue": "2.0",
"maxvalue": "3.0",
"color": "#E65100"
}
colorrange: {
minvalue: '0',
code: '#FFE0B2',
gradient: '1',
color: [
{ minvalue: '0.5', maxvalue: '1.0', color: '#FFD74D' },
{ minvalue: '1.0', maxvalue: '2.0', color: '#FB8C00' },
{ minvalue: '2.0', maxvalue: '3.0', color: '#E65100' }
]
},
"data": [
{
"id": "NA",
"value": ".82",
"showLabel": "1"
},
{
"id": "SA",
"value": "2.04",
"showLabel": "1"
},
{
"id": "AS",
"value": "1.78",
"showLabel": "1"
},
{
"id": "EU",
"value": ".40",
"showLabel": "1"
},
{
"id": "AF",
"value": "2.58",
"showLabel": "1"
},
{
"id": "AU",
"value": "1.30",
"showLabel": "1"
}
data: [
{ id: 'NA', value: '.82', showLabel: '1' },
{ id: 'SA', value: '2.04', showLabel: '1' },
{ id: 'AS', value: '1.78', showLabel: '1' },
{ id: 'EU', value: '.40', showLabel: '1' },
{ id: 'AF', value: '2.58', showLabel: '1' },
{ id: 'AU', value: '1.30', showLabel: '1' }
]

@@ -177,13 +115,10 @@ };

const chartConfigs = {
type: 'world',
width: 600,
height: 400,
dataFormat: 'json',
dataSource: myDataSource,
type: 'world',
width: 600,
height: 400,
dataFormat: 'json',
dataSource: dataSource
};
ReactDOM.render(
<ReactFC {...chartConfigs} />,
document.getElementById('root'),
);
ReactDOM.render(<ReactFC {...chartConfigs} />, document.getElementById('root'));
```

@@ -214,5 +149,7 @@

Attach the callback to an event through the React-FC component:
```javascript
<ReactFC {...chartConfigs} fcEvent-EVENTNAME={this.chartEventCallback} />
```
Where, EVENTNAME is to be replaced by the event you want to track.

@@ -232,46 +169,3 @@

const myDataSource = {
"chart": {
"caption": "Countries With Most Oil Reserves [2017-18]",
"subCaption": "In MMbbl = One Million barrels",
"xAxisName": "Country",
"yAxisName": "Reserves (MMbbl)",
"numberSuffix": "K",
"theme": "fusion"
},
"data": [
{
"label": "Venezuela",
"value": "290"
},
{
"label": "Saudi",
"value": "260"
},
{
"label": "Canada",
"value": "180"
},
{
"label": "Iran",
"value": "140"
},
{
"label": "Russia",
"value": "115"
},
{
"label": "UAE",
"value": "100"
},
{
"label": "US",
"value": "30"
},
{
"label": "China",
"value": "30"
}
]
};
const dataSource = /* Data Source A , given above */;

@@ -283,3 +177,3 @@ const chartConfigs = {

dataFormat: 'json',
dataSource: myDataSource,
dataSource: dataSource
};

@@ -290,7 +184,5 @@

super(props);
this.state = {
actualValue: 'Hover on the plot to see the value along with the label',
actualValue: 'Hover on the plot to see the value along with the label'
};
this.showPlotValue = this.showPlotValue.bind(this);

@@ -303,3 +195,5 @@ }

this.setState({
actualValue: `You’re are currently hovering over ${dataObj.categoryLabel} whose value is ${dataObj.displayValue}`,
actualValue: `You’re are currently hovering over ${
dataObj.categoryLabel
} whose value is ${dataObj.displayValue}`
});

@@ -311,4 +205,9 @@ }

<div>
<ReactFC {...chartConfigs} fcEvent-dataplotRollOver={this.showPlotValue} />
<p style={{ padding: '10px', background: '#f5f2f0' }}>{this.state.actualValue}</p>
<ReactFC
{...chartConfigs}
fcEvent-dataplotRollOver={this.showPlotValue}
/>
<p style={{ padding: '10px', background: '#f5f2f0' }}>
{this.state.actualValue}
</p>
</div>

@@ -319,11 +218,85 @@ );

ReactDOM.render(
<Chart />,
document.getElementById('root'),
);
ReactDOM.render(<Chart />, document.getElementById('root'));
```
## DrillDown Component
A custom component to easily add drill down to your react application.
### Syntax
```javascript
import FusionCharts from 'fusioncharts';
import Charts from 'fusioncharts/fusioncharts.charts';
import ReactFC from 'react-fusioncharts';
import DrillDown from 'react-fusioncharts/components/DrillDown';
DrillDown.fcRoot(FusionCharts, Charts);
```
```jsx
class MyComponent extends React.Component{
constructor(props){
super(props);
this.plotChildMap = [ 0, 2, 1 ];
this.dataSource = /*Data Source A : Given above */ ;
this.btnConfig = {text : 'Back'};
this.type= 'column2d';
this.height = 400;
this.width = 400;
}
render(){
return (
<DrillDown
dataSource={dataSource}
plotChildMap={plotChildMap}
btnConfig={btnConfig}
btnStyle={btnStyle}
dataFormat={dataFormat}
type={type}
height={height}
width={width}
...other
>
<ReactFC /> /* ReactFC as a child */
<ReactFC />
...
<DrillDown></DrillDown> /* DrillDown as a child for next level drill down*/
</DrillDown>
)
}
}
```
#### Attribute Description
- plotChildMap[Array(Number)| Array[Object]]
- Array ( Number ) - Representation of child mapped to the plot of the parent data source passed to the `DrillDown`
component . Array location are considered plot index of parent, the value corresponding to it are considered which child chart to render.
`Eg. [0,2,1]`
`0(location) -> 0 (value)` means clicking the first (zero indexed) data plot , render the 0th child ,
`1(location) -> 2(value)` means clicking the second data plot, render the 1st Child (Note: It is 0-indexed )
**Null case** : You can pass `null` for a data plot for which you dont want a drill down.
- Array ( Object ) - Representation of child mapped with plot in form of an object of shape
`{ "plotPosition": Number, "childPosition": Number }`
This object holds information about which child render on a data plot is clicked.
`Eg. [{ plotPosition: 1 , childPosition: 0}, { plotPosition: 0, childPosition: 1}]`
Note: plotChildMap does not honour heterogeneous data , eg. Number and Object
both.
`[ 0 , { plotPosition:0, childPosition: 1 } ]`
- btnConfig [Object]- Basic configuration without overriding the default button styles
- `text`: PropTypes.string - Button Text
- `color`: PropTypes.string
- `backgroundColor`: PropTypes.string
- `borderColor`: PropTypes.string
- `fontSize`: PropTypes.string
- `fontWeight`: PropTypes.string
- `padding`: PropTypes.string
- `fontFamily`: PropTypes.string
- btnStyle [Object] - CSS styles which override the styles in default btnConfig except `text`.
## Working with APIs
To call APIs we will need the chart object. To get the chart object for an React-FC component, pass a callback through the attribute ```onRender```.
To call APIs we will need the chart object. To get the chart object for an React-FC component, pass a callback through the attribute `onRender`.

@@ -366,46 +339,3 @@ Write the callback:

const myDataSource = {
"chart": {
"caption": "Countries With Most Oil Reserves [2017-18]",
"subCaption": "In MMbbl = One Million barrels",
"xAxisName": "Country",
"yAxisName": "Reserves (MMbbl)",
"numberSuffix": "K",
"theme": "fusion"
},
"data": [
{
"label": "Venezuela",
"value": "290"
},
{
"label": "Saudi",
"value": "260"
},
{
"label": "Canada",
"value": "180"
},
{
"label": "Iran",
"value": "140"
},
{
"label": "Russia",
"value": "115"
},
{
"label": "UAE",
"value": "100"
},
{
"label": "US",
"value": "30"
},
{
"label": "China",
"value": "30"
}
]
};
const dataSource = /* Data source A given above */;

@@ -417,3 +347,3 @@ const chartConfigs = {

dataFormat: 'json',
dataSource: myDataSource,
dataSource: dataSource
};

@@ -438,9 +368,5 @@

ReactDOM.render(
<Chart />,
document.getElementById('root'),
);
ReactDOM.render(<Chart />, document.getElementById('root'));
```
## Test

@@ -454,7 +380,9 @@

* Clone the repository.
* Install dependencies
* Run `npm start` to start the dev server.
* Open `http://localhost:5000/` in your browser.
We are actively accepting pull requests. For contributions create a pull request to the `develop` branch with the necessary details.
- Clone the repository.
- Install dependencies
- Run `npm start` to start the dev server.
- Open `http://localhost:5000/` in your browser.
```sh

@@ -474,2 +402,1 @@ $ git clone https://github.com/fusioncharts/react-fusioncharts-component.git

### [Demos and Documentation](https://fusioncharts.github.io/react-fusioncharts-component/)
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc