Skip to content

Commit 16297d3

Browse files
author
pipeline
committed
bug(EJ2-5384): angular SB changes committed
1 parent 25de1d4 commit 16297d3

File tree

8 files changed

+11
-11
lines changed

8 files changed

+11
-11
lines changed

src/chart/drilldown-pie-plnkr.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

src/chart/drilldown-pie.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ export class DrilldownPieComponent {
8080
}
8181
this.pie.series[0].dataLabel.position = 'Outside';
8282
this.pie.series[0].dataLabel.font.color = 'black';
83-
this.pie.legendSettings.visible = true;
83+
this.pie.legendSettings.visible = false;
8484
this.pie.visibleSeries[0].explodeIndex = null;
8585
this.pie.enableSmartLabels = true;
8686
this.pie.refresh();

src/chart/range-selection-plnkr.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

src/chart/range-selection.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<div class="control-section">
77
<div class="col-md-8">
88
<ej-chart #chart style='display:block; width: 92%' [chartArea]='chartArea'[primaryXAxis]='primaryXAxis' [primaryYAxis]='primaryYAxis' [legendSettings]='legend' [title]='title'
9-
selectionMode='Cluster' (load)='load($event)'>
9+
selectionMode='DragXY' (load)='load($event)'>
1010
<e-series-collection>
1111
<e-series [dataSource]='data' type='Scatter' xName='x' yName='y' name='Product A' width=2 [marker]='marker1'> </e-series>
1212
<e-series [dataSource]='data1' type='Scatter' xName='x' yName='y' name='Product B' width=2 [marker]='marker2'> </e-series>

src/circulargauge/customization-plnkr.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

src/circulargauge/customization.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<e-axis startAngle=300 endAngle=60 radius='80%' minimum=999 maximum=2000 [majorTicks]="majorTicks" [minorTicks]="minorTicks"
1212
[labelStyle]="labelStyle" [pointers]="pointers" [lineStyle]="lineStyle">
1313
<e-annotations>
14-
<e-annotation content='<div style="color:#666666;font-size:35px;">1800</div>' angle=0 radius='110%'>
14+
<e-annotation content='<div style="color:#666666;font-size:35px;">1800</div>' angle=0 radius='110%' zIndex='1'>
1515
</e-annotation>
1616
</e-annotations>
1717
<e-ranges>

src/lineargauge/data-plnkr.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

src/lineargauge/data.component.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -91,13 +91,13 @@ export class DataComponent {
9191
axisIndex: 0,
9292
axisValue: 0,
9393
x: 50,
94-
y: -110
94+
y: -110, zIndex: '1'
9595
},
9696
{
9797
content: '<div id="pointerText" style="width:60px;"><p style="font-size:15px;color:#30b32d;">28 MPH</p></div>',
9898
axisIndex: 0,
9999
axisValue: 28,
100-
y: -70
100+
y: -70, zIndex: '1'
101101
}];
102102

103103
public Axes2: Object[] = [{
@@ -145,13 +145,13 @@ export class DataComponent {
145145
axisIndex: 0,
146146
axisValue: 0,
147147
x: 50,
148-
y: -120
148+
y: -120, zIndex: '1'
149149
},
150150
{
151151
content: '<div id="pointerText" style="width:100px;"><p style="font-size:15px;color:#30b32d;">2000 Steps</p></div>',
152152
axisIndex: 0,
153153
axisValue: 2.2,
154-
y: -65
154+
y: -65, zIndex: '1'
155155
}];
156156

157157
public Axes3: Object[] = [{

0 commit comments

Comments
 (0)