-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathblank_chart.jsx
71 lines (59 loc) · 1.68 KB
/
blank_chart.jsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
"use strict";
import {
default as React,
Component
} from 'react';
import {
Xgrid,
Ygrid,
Xaxis,
Yaxis
} from 'react-d3-core';
import Chart from '../chart';
import StraightLine from '../utils/straightLine';
/*
Renders blank chart.
User can provide any text to be diplayed on blank chart.
*/
export default class BlankChart extends Component {
constructor(props) {
super(props);
}
static defaultProps = {
showXGrid: true,
showYGrid: false,
xDomain: [0,10], // its always good to pass xDomain values for x-axis in case if ther is no data the scale will still have valid values or else it will be default.
yDomain: [0],
yTicks: [0],
noDataTitleText: ""
}
renderNoDataTitle (x,y,textValue) {
return (<g><text className = "chartNoData" x = {x} y = {y}>{textValue}</text></g>)
}
render() {
const {
width,
height,
margins,
showXGrid,
showYGrid,
xDomain,
noDataTitleText,
yTicks // do not display Y ticks for blank chart
} = this.props;
var xgrid, ygrid, textXMargin, textYMargin;
if(showXGrid) xgrid = <Xgrid {...this.props}/>
if(showYGrid) ygrid = <Ygrid {...this.props}/>
textXMargin = width/2 - margins.right
textYMargin = height/2 - margins.bottom
return ( <Chart width = {width} height = {height} {...this.props}>
<StraightLine x1={0 - 20} y1={0} x2={width - margins.right } y2={0} {...this.props}/>
{xgrid}
{ygrid}
<Xaxis {...this.props}/>
<Yaxis {...this.props}/>
<StraightLine x1={0 - 20} y1={height - margins.top - margins.bottom} x2={width - 100} y2={height - margins.top - margins.bottom} {...this.props}/>
{noDataTitleText ? this.renderNoDataTitle(textXMargin,textYMargin,noDataTitleText) : null}
</Chart>)
}
}