Advertisement
Guest User

Untitled

a guest
Jul 16th, 2019
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. <svg
  2. width={props.width}
  3. height={props.height}>
  4.  
  5. <Axes
  6. scales={{xScale, yScale}}
  7. margins={props.margins}
  8. svgDimensions={{width:props.width, height:props.height}}
  9. ticks={ticks}
  10. dataModel={props.dataModel}
  11. />
  12.  
  13. <StackedBars
  14. scales={{xScale, yScale}}
  15. margins={props.margins}
  16. dataModel={props.dataModel}
  17. maxValue={maxValue}
  18. svgDimensions={{width:props.width, height:props.height}}
  19. />
  20.  
  21. </svg>
  22.  
  23. <ReactTooltip
  24. id='tooltipStackedBarChart'
  25. html={true}
  26. border={true}/>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement