Skip to content

Commit 50462a3

Browse files
committed
apply fix from main branch #25
1 parent d4d13e2 commit 50462a3

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

project/src/chart.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,13 +57,13 @@ class Chart {
5757
const radix = new Radix(this.paper, this.cx, this.cy, this.radius, data, this.settings);
5858

5959
radix.drawBg();
60-
radix.drawUniverse();
6160
radix.drawRuler();
62-
radix.drawPoints();
6361
radix.drawCusps();
6462
radix.drawAxis();
6563
radix.drawCircles();
66-
64+
radix.drawUniverse();
65+
radix.drawPoints();
66+
6767
return radix;
6868
};
6969

project/src/radix.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -448,10 +448,10 @@ export type AstroData = {
448448
getEmptyWrapper( this.universe, this.paper.root.id + "-" + this.settings.ID_RADIX + "-" + this.settings.ID_AXIS, this.paper.root.id);
449449
const transit = new Transit(this.context, data, this.settings);
450450
transit.drawBg();
451-
transit.drawPoints();
452451
transit.drawCusps();
453452
transit.drawRuler();
454453
transit.drawCircles();
454+
transit.drawPoints();
455455
return transit;
456456
};
457457
}

project/src/transit.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -293,8 +293,8 @@ animate( data: AstroData, duration: number, isReverse: boolean, callback: () =>
293293

294294
// animation is finished
295295
this.data = data;
296-
this.drawPoints();
297296
this.drawCusps();
297+
this.drawPoints();
298298
this.aspects();
299299

300300
if(typeof callback === 'function'){

0 commit comments

Comments
 (0)