Created
August 22, 2017 12:29
-
-
Save svschannak/ebdc1a253609680b3a101d9df22016dd to your computer and use it in GitHub Desktop.
Progess Chart with Victory Pie
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 {VictoryPie, VictoryTheme} from 'victory'; | |
<VictoryPie | |
padAngle={0} | |
// used to hide labels | |
labelComponent={<span/>} | |
innerRadius={70} | |
width={200} height={200} | |
data={[{'key': "", 'y': this.state.metric}, {'key': "", 'y': (100-this.state.metric)} ]} | |
colorScale={["#19B3A6", "#EEEEEE" ]} | |
/> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment