Created
August 17, 2020 06:12
-
-
Save kristw/2ef9a4e797c0f50181af3723e703279a to your computer and use it in GitHub Desktop.
This file contains 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
<VictoryChart | |
theme={VictoryTheme.material} | |
domainPadding={{ x: 25 }} | |
scale={{ x: "time" }} | |
> | |
<VictoryAxis tickFormat={(t) => `${t.getDate()}/${t.getMonth()}`}/> | |
<VictoryAxis dependentAxis/> | |
<VictoryCandlestick | |
candleColors={{ positive: "#5f5c5b", negative: "#c43a31" }} | |
data={sampleDataDates} | |
/> | |
</VictoryChart> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment