File tree 3 files changed +67
-67
lines changed
3 files changed +67
-67
lines changed Original file line number Diff line number Diff line change 4
4
5
5
### Fixed
6
6
7
+ - Remove hardly visible dimension axis guides between animation steps.
7
8
- Do not calculate disabled markers to the color normalization.
8
9
- More precise TS type for transform matrix in event handlers.
9
10
- Add missing canvas change function in htmlcanvas plugin.
Original file line number Diff line number Diff line change @@ -33,7 +33,6 @@ bool GuidesByAxis::operator==(const GuidesByAxis &other) const
33
33
Guides::Guides (const Options &options)
34
34
{
35
35
auto isCircle = options.geometry .get () == ShapeType::circle;
36
- auto isLine = options.geometry .get () == ShapeType::line;
37
36
auto isHorizontal = options.isHorizontal ();
38
37
const auto &channelX = options.getChannels ().at (ChannelId::x);
39
38
const auto &channelY = options.getChannels ().at (ChannelId::y);
@@ -53,8 +52,8 @@ Guides::Guides(const Options &options)
53
52
y.markerGuides = yOpt.markerGuides .getValue (
54
53
isCircle && xIsMeasure && !isPolar);
55
54
56
- x.axisGuides = xOpt.guides .getValue (isLine && xIsMeasure );
57
- y.axisGuides = yOpt.guides .getValue (isLine && yIsMeasure );
55
+ x.axisGuides = xOpt.guides .getValue (false );
56
+ y.axisGuides = yOpt.guides .getValue (false );
58
57
59
58
x.interlacings = xOpt.interlacing .getValue (
60
59
xIsMeasure && !isPolar && (!isHorizontal || !yIsMeasure));
You can’t perform that action at this time.
0 commit comments