File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -917,6 +917,7 @@ proc scale_x_log10*[T: int | seq[SomeNumber]](breaks: T = newSeq[float]()): Scal
917
917
scKind: scTransformedData,
918
918
axKind: akX,
919
919
dcKind: dcContinuous,
920
+ hasDiscreteness: true,
920
921
trans: trans,
921
922
invTrans: invTrans)
922
923
result .assignBreaks(breaks)
@@ -939,6 +940,7 @@ proc scale_y_log10*[T: int | seq[SomeNumber]](breaks: T = newSeq[float]()): Scal
939
940
scKind: scTransformedData,
940
941
axKind: akY,
941
942
dcKind: dcContinuous,
943
+ hasDiscreteness: true,
942
944
trans: trans,
943
945
invTrans: invTrans)
944
946
result .assignBreaks(breaks)
@@ -961,6 +963,7 @@ proc scale_x_log2*[T: int | seq[SomeNumber]](breaks: T = newSeq[float]()): Scale
961
963
scKind: scTransformedData,
962
964
axKind: akX,
963
965
dcKind: dcContinuous,
966
+ hasDiscreteness: true,
964
967
trans: trans,
965
968
invTrans: invTrans)
966
969
result .assignBreaks(breaks)
@@ -983,6 +986,7 @@ proc scale_y_log2*[T: int | seq[SomeNumber]](breaks: T = newSeq[float]()): Scale
983
986
scKind: scTransformedData,
984
987
axKind: akY,
985
988
dcKind: dcContinuous,
989
+ hasDiscreteness: true,
986
990
trans: trans,
987
991
invTrans: invTrans)
988
992
result .assignBreaks(breaks)
You can’t perform that action at this time.
0 commit comments