Skip to content

Commit

Permalink
Release 1.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
ernest-okot committed Jun 8, 2017
1 parent b4c758f commit 3084c83
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 2 deletions.
7 changes: 5 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,17 @@
{
"name": "@devinit/charts",
"version": "1.0.0",
"version": "1.0.2",
"description": "Modular D3 charts for DevInit DataHub",
"main": "src/index.js",
"scripts": {
"test": "babel -d lib/ src/ && mocha --reporter spec -r jsdom-global/register",
"start": "webpack-dev-server",
"compile": "babel -d lib/ src/",
"build": "webpack --env=dev --progress --profile --colors",
"build:production": "WEBPACK_ENV=production webpack --env=prod --progress --profile --colors"
"build:production": "WEBPACK_ENV=production webpack --env=prod --progress --profile --colors",
"patch": "release-it -i patch -n",
"feature": "release-it -i minor -n",
"release": "release-it -i major -n"
},
"dependencies": {
"approximate-number": "^2.0.0",
Expand Down
31 changes: 31 additions & 0 deletions src/factories/create3DChart.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
export default ({
element,

plot,

config: {

title,

titleAlignment = 'left',

colors = [],

xAxis = {

},

yAxis = {

},

zAxis = {

}

}
}) => {



}

0 comments on commit 3084c83

Please sign in to comment.