Skip to content

Commit 5a29d68

Browse files
author
pipeline
committed
feature(EJ2-5386): Remove radar from smart labels property panel.
1 parent 6fb05be commit 5a29d68

File tree

8 files changed

+2
-4
lines changed

8 files changed

+2
-4
lines changed
Binary file not shown.
Binary file not shown.
Binary file not shown.
-6 Bytes
Binary file not shown.

samples/chart/smart-axis-labels/app/index.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@ export class SmartAxisLabels extends SampleBase<{}, {}> {
4242
private droplist: { [key: string]: Object }[] = [
4343
{ value: 'Hide' },
4444
{ value: 'Trim' },
45-
{ value: 'Radar' },
4645
{ value: 'Wrap' },
4746
{ value: 'MultipleRows' },
4847
{ value: 'Rotate45' },

samples/chart/vertical/app/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ export class VerticalChart extends SampleBase<{}, {}> {
6969
public liveData(data: any[], series: Series): any[] {
7070
this.count = this.count + 1;
7171
let newData: any[] = data;
72-
if (this.count > 350 || getElement('container-vertical') === null) {
72+
if (this.count > 350 || getElement('charts-vertical') === null) {
7373
clearInterval(clrInterval);
7474
} else if (this.count > 300) {
7575
newData.push({ x: this.getXValue(data), y: this.getRandomArbitrary(0, 0) });

src/chart/smart-axis-labels.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@ export class SmartAxisLabels extends SampleBase<{}, {}> {
4242
private droplist: { [key: string]: Object }[] = [
4343
{ value: 'Hide' },
4444
{ value: 'Trim' },
45-
{ value: 'Radar' },
4645
{ value: 'Wrap' },
4746
{ value: 'MultipleRows' },
4847
{ value: 'Rotate45' },

src/chart/vertical.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ export class VerticalChart extends SampleBase<{}, {}> {
8484
public liveData(data: any[], series: Series): any[] {
8585
this.count = this.count + 1;
8686
let newData: any[] = data;
87-
if (this.count > 350 || getElement('container-vertical') === null) {
87+
if (this.count > 350 || getElement('charts-vertical') === null) {
8888
clearInterval(clrInterval);
8989
} else if (this.count > 300) {
9090
newData.push({ x: this.getXValue(data), y: this.getRandomArbitrary(0, 0) });

0 commit comments

Comments
 (0)