@@ -37,8 +37,8 @@ We have different type of selection mode for selecting the data. They are,
37
37
{% highlight ts tabtitle="app.module.ts" %}
38
38
{% include code-snippet/chart/user-interaction/selection-cs1/app/app.module.ts %}
39
39
{% endhighlight %}
40
- {% highlight ts tabtitle="main.ts " %}
41
- {% include code-snippet/chart/user-interaction/selection-cs1/app/main.ts %}
40
+ {% highlight ts tabtitle="app.component.css " %}
41
+ {% include code-snippet/chart/user-interaction/selection-cs1/index.css %}
42
42
{% endhighlight %}
43
43
{% endtabs %}
44
44
@@ -57,8 +57,8 @@ We have different type of selection mode for selecting the data. They are,
57
57
{% highlight ts tabtitle="app.module.ts" %}
58
58
{% include code-snippet/chart/user-interaction/selection-cs2/app/app.module.ts %}
59
59
{% endhighlight %}
60
- {% highlight ts tabtitle="main.ts " %}
61
- {% include code-snippet/chart/user-interaction/selection-cs2/app/main.ts %}
60
+ {% highlight ts tabtitle="app.component.css " %}
61
+ {% include code-snippet/chart/user-interaction/selection-cs2/index.css %}
62
62
{% endhighlight %}
63
63
{% endtabs %}
64
64
@@ -75,8 +75,8 @@ You can select the points that corresponds to the same index in all the series,
75
75
{% highlight ts tabtitle="app.module.ts" %}
76
76
{% include code-snippet/chart/user-interaction/selection-cs3/app/app.module.ts %}
77
77
{% endhighlight %}
78
- {% highlight ts tabtitle="main.ts " %}
79
- {% include code-snippet/chart/user-interaction/selection-cs3/app/main.ts %}
78
+ {% highlight ts tabtitle="app.component.css " %}
79
+ {% include code-snippet/chart/user-interaction/selection-cs3/index.css %}
80
80
{% endhighlight %}
81
81
{% endtabs %}
82
82
@@ -102,8 +102,8 @@ The selected data’s are returned as an array collection in the [`dragComplete`
102
102
{% highlight ts tabtitle="app.module.ts" %}
103
103
{% include code-snippet/chart/user-interaction/drag-cs1/app/app.module.ts %}
104
104
{% endhighlight %}
105
- {% highlight ts tabtitle="main.ts " %}
106
- {% include code-snippet/chart/user-interaction/drag-cs1/app/main.ts %}
105
+ {% highlight ts tabtitle="app.component.css " %}
106
+ {% include code-snippet/chart/user-interaction/drag-cs1/index.css %}
107
107
{% endhighlight %}
108
108
{% endtabs %}
109
109
@@ -120,8 +120,8 @@ To select a region by drawing freehand shapes to fetch a collection of data use
120
120
{% highlight ts tabtitle="app.module.ts" %}
121
121
{% include code-snippet/chart/user-interaction/drag-cs2/app/app.module.ts %}
122
122
{% endhighlight %}
123
- {% highlight ts tabtitle="main.ts " %}
124
- {% include code-snippet/chart/user-interaction/drag-cs2/app/main.ts %}
123
+ {% highlight ts tabtitle="app.component.css " %}
124
+ {% include code-snippet/chart/user-interaction/drag-cs2/index.css %}
125
125
{% endhighlight %}
126
126
{% endtabs %}
127
127
@@ -138,8 +138,8 @@ To select multiple region on the chart, set the `allowMultiSelection` property t
138
138
{% highlight ts tabtitle="app.module.ts" %}
139
139
{% include code-snippet/chart/user-interaction/drag-cs3/app/app.module.ts %}
140
140
{% endhighlight %}
141
- {% highlight ts tabtitle="main.ts " %}
142
- {% include code-snippet/chart/user-interaction/drag-cs3/app/main.ts %}
141
+ {% highlight ts tabtitle="app.component.css " %}
142
+ {% include code-snippet/chart/user-interaction/drag-cs3/index.css %}
143
143
{% endhighlight %}
144
144
{% endtabs %}
145
145
@@ -156,8 +156,8 @@ You can select multiple points or series, by enabling the [`isMultiSelect`](http
156
156
{% highlight ts tabtitle="app.module.ts" %}
157
157
{% include code-snippet/chart/user-interaction/selection-cs4/app/app.module.ts %}
158
158
{% endhighlight %}
159
- {% highlight ts tabtitle="main.ts " %}
160
- {% include code-snippet/chart/user-interaction/selection-cs4/app/main.ts %}
159
+ {% highlight ts tabtitle="app.component.css " %}
160
+ {% include code-snippet/chart/user-interaction/selection-cs4/index.css %}
161
161
{% endhighlight %}
162
162
{% endtabs %}
163
163
@@ -174,8 +174,8 @@ You can able to select a point or series programmatically on a chart using [`sel
174
174
{% highlight ts tabtitle="app.module.ts" %}
175
175
{% include code-snippet/chart/user-interaction/selection-cs5/app/app.module.ts %}
176
176
{% endhighlight %}
177
- {% highlight ts tabtitle="main.ts " %}
178
- {% include code-snippet/chart/user-interaction/selection-cs5/app/main.ts %}
177
+ {% highlight ts tabtitle="app.component.css " %}
178
+ {% include code-snippet/chart/user-interaction/selection-cs5/index.css %}
179
179
{% endhighlight %}
180
180
{% endtabs %}
181
181
@@ -191,8 +191,8 @@ You can able to select a point or series through on legend using [`toggleVisibil
191
191
{% highlight ts tabtitle="app.module.ts" %}
192
192
{% include code-snippet/chart/user-interaction/selection-cs6/app/app.module.ts %}
193
193
{% endhighlight %}
194
- {% highlight ts tabtitle="main.ts " %}
195
- {% include code-snippet/chart/user-interaction/selection-cs6/app/main.ts %}
194
+ {% highlight ts tabtitle="app.component.css " %}
195
+ {% include code-snippet/chart/user-interaction/selection-cs6/index.css %}
196
196
{% endhighlight %}
197
197
{% endtabs %}
198
198
@@ -209,8 +209,8 @@ You can apply custom style to selected points or series with [`selectionStyle`](
209
209
{% highlight ts tabtitle="app.module.ts" %}
210
210
{% include code-snippet/chart/user-interaction/selection-cs7/app/app.module.ts %}
211
211
{% endhighlight %}
212
- {% highlight ts tabtitle="main.ts " %}
213
- {% include code-snippet/chart/user-interaction/selection-cs7/app/main.ts %}
212
+ {% highlight ts tabtitle="app.component.css " %}
213
+ {% include code-snippet/chart/user-interaction/selection-cs7/index.css %}
214
214
{% endhighlight %}
215
215
{% endtabs %}
216
216
0 commit comments