Skip to content

Commit

Permalink
[ML] Fix type
Browse files Browse the repository at this point in the history
  • Loading branch information
qn895 committed Sep 3, 2020
1 parent a954cc6 commit 09495e3
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import {
AnnotationDomainTypes,
Axis,
AxisConfig,
AxisStyle,
Chart,
LineAnnotation,
LineAnnotationStyle,
Expand Down Expand Up @@ -44,18 +44,18 @@ const baselineStyle: LineAnnotationStyle = {
},
};

const axes: RecursivePartial<AxisConfig> = {
axisLineStyle: {
const axes: RecursivePartial<AxisStyle> = {
axisLine: {
stroke: axisColor,
},
tickLabelStyle: {
tickLabel: {
fontSize: 10,
fill: axisColor,
},
tickLineStyle: {
tickLine: {
stroke: axisColor,
},
gridLineStyle: {
gridLine: {
horizontal: {
dash: [1, 2],
},
Expand Down

0 comments on commit 09495e3

Please sign in to comment.