ATTENTION :
Toute personne n'ayant pas rempli ces prérequis ne sera pas accepté à la formation.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, {Component, PropTypes} from 'react'; | |
const Button = FocusComponents.common.button.action.component; | |
const defaultProps = { | |
margin: {top: -5, right: -5, bottom: -5, left: -5}, | |
width: 960, | |
height: 500, | |
plan: '<svg><path></path></svg>', | |
zoomFunction: () => { | |
d3.select('svg').selectAll('polyline').attr('transform', 'translate(' + d3.event.translate + ')scale(' + d3.event.scale + ')'); | |
}, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, {Component, PropTypes} from 'react'; | |
const Button = FocusComponents.common.button.action.component; | |
const defaultProps = { | |
margin: {top: -5, right: -5, bottom: -5, left: -5}, | |
width: 960, | |
height: 500, | |
plan: '<svg><path></path></svg>', | |
zoomFunction: () => { | |
d3.select('svg').selectAll('polyline').attr('transform', 'translate(' + d3.event.translate + ')scale(' + d3.event.scale + ')'); | |
}, |