Skip to content

Commit e1b7e8e

Browse files
author
pipeline
committed
feature(EJ2-5386): Added sample changes to chart.
1 parent 5a29d68 commit e1b7e8e

File tree

14 files changed

+88
-88
lines changed

14 files changed

+88
-88
lines changed
Binary file not shown.
Binary file not shown.
Binary file not shown.
6 Bytes
Binary file not shown.
Binary file not shown.
Binary file not shown.
0 Bytes
Binary file not shown.

samples/chart/export/app/index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,8 +96,8 @@ export class Export extends SampleBase<{}, {}> {
9696
</td>
9797
</tr>
9898
<tr style={{ height: '50px' }}>
99-
<td style={{ width: '100%' }}>
100-
<div id="btn-control">
99+
<td>
100+
<div id="btn-control" style={{ 'margin-left': '60px' }}>
101101
<ButtonComponent onClick={this.onClick.bind(this)} iconCss='e-icons e-play-icon' cssClass='e-flat' isPrimary={true}>Export</ButtonComponent>
102102
</div>
103103
</td>

samples/chart/stacked-bar100/app/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ export class StackedBar100 extends SampleBase<{}, {}> {
4646
<SeriesCollectionDirective>
4747
<SeriesDirective dataSource={data} xName='x' yName='y' name='Apple' type='StackingBar100'>
4848
</SeriesDirective>
49-
<SeriesDirective dataSource={data} xName='x' yName='y1' name='orange' type='StackingBar100'>
49+
<SeriesDirective dataSource={data} xName='x' yName='y1' name='Orange' type='StackingBar100'>
5050
</SeriesDirective>
5151
<SeriesDirective dataSource={data} xName='x' yName='y2' name='Wastage' type='StackingBar100'>
5252
</SeriesDirective>

samples/chart/trend-lines/app/index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ export class Trend extends SampleBase<{}, {}> {
205205
</td>
206206
<td style={{ width: '20%' }}>
207207
<div>
208-
<NumericTextBoxComponent id="polynomial" value={0} min={1} max={20} step={1} disabled={true} change={this.checkPolynomialOrder.bind(this)} ref={d => this.polynomialElement = d} />
208+
<NumericTextBoxComponent id="polynomial" value={0} min={1} max={20} step={1} enabled={false} change={this.checkPolynomialOrder.bind(this)} ref={d => this.polynomialElement = d} />
209209
</div>
210210
</td>
211211
</tr>
@@ -215,7 +215,7 @@ export class Trend extends SampleBase<{}, {}> {
215215
</td>
216216
<td style={{ width: '20%' }}>
217217
<div>
218-
<NumericTextBoxComponent id="period" value={0} min={1} max={20} step={1} disabled={true} change={this.checkPeriod.bind(this)} ref={d => this.periodElement = d} />
218+
<NumericTextBoxComponent id="period" value={0} min={1} max={20} step={1} enabled={false} change={this.checkPeriod.bind(this)} ref={d => this.periodElement = d} />
219219
</div>
220220
</td>
221221
</tr>

0 commit comments

Comments
 (0)