Skip to content

Commit 989d75c

Browse files
Merge remote-tracking branch 'remotes/origin/development'
2 parents 39ee0d5 + 9dddc94 commit 989d75c

File tree

84 files changed

+2727
-580
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

84 files changed

+2727
-580
lines changed

ej2-javascript-toc.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1025,6 +1025,8 @@
10251025
<ul>
10261026
<li><a href="/ej2-javascript/gantt/pdf-export/pdf-export">Pdf Export</a></li>
10271027
<li><a href="/ej2-javascript/gantt/pdf-export/multiple-gantt-exporting">Multiple Gantt Exporting</a></li>
1028+
<li><a href="/ej2-javascript/gantt/pdf-export/customize-pdf-export.">Customize PDF exporting</a></li>
1029+
<li><a href="/ej2-javascript/gantt/pdf-export/header-and-footer">Header and Footer</a></li>
10281030
</ul>
10291031
</li>
10301032
<li><a href="/ej2-javascript/gantt/data-markers">Data Markers</a></li>

ej2-javascript/accumulation-chart/tool-tip.md

Lines changed: 47 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11
---
22
layout: post
3-
title: Tool tip in ##Platform_Name## Accumulation chart control | Syncfusion
4-
description: Learn here all about Tool tip in Syncfusion ##Platform_Name## Accumulation chart control of Syncfusion Essential JS 2 and more.
3+
title: Tooltip in ##Platform_Name## Accumulation chart control | Syncfusion
4+
description: Learn here all about Tooltip in Syncfusion ##Platform_Name## Accumulation chart control of Syncfusion Essential JS 2 and more.
55
platform: ej2-javascript
6-
control: Tool tip
6+
control: Tooltip
77
publishingplatform: ##Platform_Name##
88
documentation: ug
99
domainurl: ##DomainURL##
1010
---
1111

12-
# Tool tip in ##Platform_Name## Accumulation chart control
12+
# Tooltip in ##Platform_Name## Accumulation chart control
1313

14-
Tooltip for the accumulation chart can be enabled by using the `enable` property.
14+
Tooltip for the accumulation chart can be enabled by using the [`enable`](../../api/accumulation-chart/tooltipSettingsModel/#enable) property.
1515

1616
{% if page.publishingplatform == "typescript" %}
1717

18-
{% tabs %}
18+
{% tabs %}
1919
{% highlight ts tabtitle="index.ts" %}
2020
{% include code-snippet/chart/chart-types-cs66/index.ts %}
2121
{% endhighlight %}
@@ -44,11 +44,11 @@ Tooltip for the accumulation chart can be enabled by using the `enable` proper
4444
4545
## Header
4646

47-
We can specify header for the tooltip using `header` property.
47+
We can specify header for the tooltip using [`header`](../../api/accumulation-chart/tooltipSettingsModel/#header) property.
4848

4949
{% if page.publishingplatform == "typescript" %}
5050

51-
{% tabs %}
51+
{% tabs %}
5252
{% highlight ts tabtitle="index.ts" %}
5353
{% include code-snippet/chart/chart-types-cs67/index.ts %}
5454
{% endhighlight %}
@@ -79,7 +79,7 @@ By default, tooltip shows information of x and y value in points. In addition to
7979

8080
{% if page.publishingplatform == "typescript" %}
8181

82-
{% tabs %}
82+
{% tabs %}
8383
{% highlight ts tabtitle="index.ts" %}
8484
{% include code-snippet/chart/chart-types-cs68/index.ts %}
8585
{% endhighlight %}
@@ -104,13 +104,13 @@ By default, tooltip shows information of x and y value in points. In addition to
104104
{% previewsample "page.domainurl/code-snippet/chart/chart-types-cs68" %}
105105
{% endif %}
106106

107-
## Tooltip Format
107+
## Tooltip format
108108

109-
Any HTML element can be displayed in the tooltip by using the `template` property.
109+
Any HTML element can be displayed in the tooltip by using the [`template`](../../api/accumulation-chart/tooltipSettingsModel/#template) property.
110110

111111
{% if page.publishingplatform == "typescript" %}
112112

113-
{% tabs %}
113+
{% tabs %}
114114
{% highlight ts tabtitle="index.ts" %}
115115
{% include code-snippet/chart/chart-types-cs69/index.ts %}
116116
{% endhighlight %}
@@ -135,14 +135,44 @@ Any HTML element can be displayed in the tooltip by using the `template` propert
135135
{% previewsample "page.domainurl/code-snippet/chart/chart-types-cs69" %}
136136
{% endif %}
137137

138+
## Fixed tooltip
139+
140+
By default, tooltip track the mouse movement, but you can set a fixed position for the tooltip by using the `location` property.
141+
142+
{% if page.publishingplatform == "typescript" %}
143+
144+
{% tabs %}
145+
{% highlight ts tabtitle="index.ts" %}
146+
{% include code-snippet/chart/chart-types-cs180/index.ts %}
147+
{% endhighlight %}
148+
{% highlight html tabtitle="index.html" %}
149+
{% include code-snippet/chart/chart-types-cs180/index.html %}
150+
{% endhighlight %}
151+
{% endtabs %}
152+
153+
{% previewsample "page.domainurl/code-snippet/chart/chart-types-cs180" %}
154+
155+
{% elsif page.publishingplatform == "javascript" %}
156+
157+
{% tabs %}
158+
{% highlight js tabtitle="index.js" %}
159+
{% include code-snippet/chart/chart-types-cs180/index.js %}
160+
{% endhighlight %}
161+
{% highlight html tabtitle="index.html" %}
162+
{% include code-snippet/chart/chart-types-cs180/index.html %}
163+
{% endhighlight %}
164+
{% endtabs %}
165+
166+
{% previewsample "page.domainurl/code-snippet/chart/chart-types-cs180" %}
167+
{% endif %}
168+
138169
## Customization
139170

140-
The [`fill`](../api/chart/tooltipSettingsModel/#fill) and [`border`](../api/chart/tooltipSettingsModel/#border) properties are used to customize the background color and border of the tooltip respectively. The [`textStyle`](../api/chart/tooltipSettingsModel/#textstyle)
141-
property in the tooltip is used to customize the font of the tooltip text. The [`highlightColor`](../api/accumulation-chart/accumulationChartModel/#highlightcolor) property can be used to change the color of the data point when hovering.
171+
The [`fill`](../../api/accumulation-chart/tooltipSettingsModel/#fill) and [`border`](../../api/accumulation-chart/tooltipSettingsModel/#border) properties are used to customize the background color and border of the tooltip respectively. The [`textStyle`](../../api/accumulation-chart/tooltipSettingsModel/#textstyle) property in the tooltip is used to customize the font of the tooltip text. The [`highlightColor`](../../api/accumulation-chart/accumulationChartModel/#highlightcolor) property can be used to change the color of the data point when hovering.
142172

143173
{% if page.publishingplatform == "typescript" %}
144174

145-
{% tabs %}
175+
{% tabs %}
146176
{% highlight ts tabtitle="index.ts" %}
147177
{% include code-snippet/chart/chart-types-cs70/index.ts %}
148178
{% endhighlight %}
@@ -169,11 +199,11 @@ property in the tooltip is used to customize the font of the tooltip text. The [
169199

170200
## To customize individual tooltip
171201

172-
Using `tooltipRender` event, you can customize a tooltip for particular point. event, you can customize a tooltip for particular point.
202+
Using [`tooltipRender`](../../api/accumulation-chart/iAccTooltipRenderEventArgs/) event, you can customize a tooltip for particular point. event, you can customize a tooltip for particular point.
173203

174204
{% if page.publishingplatform == "typescript" %}
175205

176-
{% tabs %}
206+
{% tabs %}
177207
{% highlight ts tabtitle="index.ts" %}
178208
{% include code-snippet/chart/chart-types-cs71/index.ts %}
179209
{% endhighlight %}

ej2-javascript/bullet-chart/comparative-bar.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ domainurl: ##DomainURL##
1212

1313
# Comparative bar in ##Platform_Name## Bullet chart control
1414

15-
The line marker that runs perpendicular to the orientation of the graph is known as the **Comparative Measure** and it is used as a target marker to compare against the feature measure value. This is also called as the **Target Bar** in the Bullet Chart. To display the target bar, the `targetField` should be mapped to the appropriate field from the datasource.
15+
The line marker that runs perpendicular to the orientation of the graph is known as the **Comparative Measure** and it is used as a target marker to compare against the feature measure value. This is also called as the **Target Bar** in the Bullet Chart. To display the target bar, the [`targetField`](../../api/bullet-chart#targetfield) should be mapped to the appropriate field from the datasource.
1616

1717
{% if page.publishingplatform == "typescript" %}
1818

19-
{% tabs %}
19+
{% tabs %}
2020
{% highlight ts tabtitle="index.ts" %}
2121
{% include code-snippet/bullet-chart/targetbar-cs1/index.ts %}
2222
{% endhighlight %}
@@ -41,13 +41,13 @@ The line marker that runs perpendicular to the orientation of the graph is known
4141
{% previewsample "page.domainurl/code-snippet/bullet-chart/targetbar-cs1" %}
4242
{% endif %}
4343

44-
## Types of Target Bar
44+
## Types of target bar
4545

46-
The shape of the target bar can be customized using the `targetTypes` property and it supports **Circle**, **Cross**, and **Rect** shapes. The default type of the target bar is **Rect**.
46+
The shape of the target bar can be customized using the [`targetTypes`](../../api/bullet-chart#targettypes) property and it supports **Circle**, **Cross**, and **Rect** shapes. The default type of the target bar is **Rect**.
4747

4848
{% if page.publishingplatform == "typescript" %}
4949

50-
{% tabs %}
50+
{% tabs %}
5151
{% highlight ts tabtitle="index.ts" %}
5252
{% include code-snippet/bullet-chart/targetbar-cs2/index.ts %}
5353
{% endhighlight %}
@@ -72,16 +72,16 @@ The shape of the target bar can be customized using the `targetTypes` property a
7272
{% previewsample "page.domainurl/code-snippet/bullet-chart/targetbar-cs2" %}
7373
{% endif %}
7474

75-
## Target Bar Customization
75+
## Target bar customization
7676

77-
The following properties can be used to customize the Target Bar.
77+
The following properties can be used to customize the target bar. Also, you can bind the color for the target bar from [`dataSource`](../../api/bullet-chart/#datasource) for the bullet chart.
7878

79-
* `targetColor` - Specifies the fill color of Target Bar.
80-
* `targetWidth` - Specifies the width of Target Bar.
79+
* [`targetColor`](../../api/bullet-chart#targetcolor) - Specifies the fill color of target bar.
80+
* [`targetWidth`](../../api/bullet-chart#targetwidth) - Specifies the width of target bar.
8181

8282
{% if page.publishingplatform == "typescript" %}
8383

84-
{% tabs %}
84+
{% tabs %}
8585
{% highlight ts tabtitle="index.ts" %}
8686
{% include code-snippet/bullet-chart/targetbar-cs3/index.ts %}
8787
{% endhighlight %}

ej2-javascript/bullet-chart/tool-tip.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@ domainurl: ##DomainURL##
1313

1414
When the mouse is hovered over a bar in the Bullet Chart, the tooltip displays important summary about the actual and the target bar values.
1515

16-
## Default Tooltip
16+
## Default tooltip
1717

1818
By setting [`enable`](https://ej2.syncfusion.com/documentation/api/bullet-chart/bulletTooltipSettingsModel/#enable)the property to 'True' and by injecting `BulletTooltip` module using `BulletChart.Inject(BulletTooltip)`.The 'Tooltip' is visible in the 'Bullet chart' by default.
1919
The tooltip is not visible by default. To make it visible, set the `enable` property in the `tooltip` to **true** and injecting `BulletTooltip` module using `BulletChart.Inject(BulletTooltip)`.
2020

2121
{% if page.publishingplatform == "typescript" %}
2222

23-
{% tabs %}
23+
{% tabs %}
2424
{% highlight ts tabtitle="index.ts" %}
2525
{% include code-snippet/bullet-chart/user-interaction-cs1/index.ts %}
2626
{% endhighlight %}
@@ -45,13 +45,13 @@ The tooltip is not visible by default. To make it visible, set the `enable` prop
4545
{% previewsample "page.domainurl/code-snippet/bullet-chart/user-interaction-cs1" %}
4646
{% endif %}
4747

48-
## Tooltip Template
48+
## Tooltip template
4949

5050
Any HTML elements can be displayed in the tooltip by using the `template` property of the `tooltip`. You can use the **${target}** and **${value}** as place holders in the HTML element to display the value and target values from the data source of corresponding data point.
5151

5252
{% if page.publishingplatform == "typescript" %}
5353

54-
{% tabs %}
54+
{% tabs %}
5555
{% highlight ts tabtitle="index.ts" %}
5656
{% include code-snippet/bullet-chart/user-interaction-cs2/index.ts %}
5757
{% endhighlight %}
@@ -76,7 +76,7 @@ Any HTML elements can be displayed in the tooltip by using the `template` proper
7676
{% previewsample "page.domainurl/code-snippet/bullet-chart/user-interaction-cs2" %}
7777
{% endif %}
7878

79-
## Customization of the appearance of 'Tooltip'
79+
## Customization of the appearance of tooltip
8080

8181
The [`fill`](https://ej2.syncfusion.com/documentation/api/bullet-chart/bulletTooltipSettingsModel/#fill) and [`border`](https://ej2.syncfusion.com/documentation/api/bullet-chart/bulletTooltipSettingsModel/#border) properties are used to customize the background color and border of the tooltip respectively. The [`textStyle`](https://ej2.syncfusion.com/documentation/api/bullet-chart/bulletTooltipSettingsModel/#textstyle) property in the tooltip is used to customize the font of the tooltip text.
8282

@@ -88,7 +88,7 @@ The following properties can be used to customize the Bullet Chart tooltip.
8888

8989
{% if page.publishingplatform == "typescript" %}
9090

91-
{% tabs %}
91+
{% tabs %}
9292
{% highlight ts tabtitle="index.ts" %}
9393
{% include code-snippet/chart/user-interaction-cs4/index.ts %}
9494
{% endhighlight %}

ej2-javascript/bullet-chart/value-bar.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ domainurl: ##DomainURL##
1212

1313
# Value bar in ##Platform_Name## Bullet chart control
1414

15-
To display the primary data or the current value of the data being measured known as the **Feature Measure** that should be encoded as a bar. This is called as the **Actual Bar** or the **Feature Bar** in the Bullet Chart, and to display the actual bar the `valueField` should be mapped to the appropriate field from the data source.
15+
To display the primary data or the current value of the data being measured known as the **Feature Measure** that should be encoded as a bar. This is called as the **Actual Bar** or the **Feature Bar** in the Bullet Chart, and to display the actual bar the [`valueField`](../../api/bullet-chart/#valuefield) should be mapped to the appropriate field from the data source.
1616

1717
{% if page.publishingplatform == "typescript" %}
1818

19-
{% tabs %}
19+
{% tabs %}
2020
{% highlight ts tabtitle="index.ts" %}
2121
{% include code-snippet/bullet-chart/featurebar-cs1/index.ts %}
2222
{% endhighlight %}
@@ -41,13 +41,13 @@ To display the primary data or the current value of the data being measured know
4141
{% previewsample "page.domainurl/code-snippet/bullet-chart/featurebar-cs1" %}
4242
{% endif %}
4343

44-
## Types of Actual Bar
44+
## Types of actual bar
4545

46-
The shape of the actual bar can be customized using the `type` property of the Bullet Chart. The actual bar contains `Rect` and `Dot` shapes. By default, the actual bar shape is Rect.
46+
The shape of the actual bar can be customized using the [`type`](../../api/bullet-chart/#type) property of the Bullet Chart. The actual bar contains `Rect` and `Dot` shapes. By default, the actual bar shape is Rect.
4747

4848
{% if page.publishingplatform == "typescript" %}
4949

50-
{% tabs %}
50+
{% tabs %}
5151
{% highlight ts tabtitle="index.ts" %}
5252
{% include code-snippet/bullet-chart/featurebar-cs2/index.ts %}
5353
{% endhighlight %}
@@ -72,15 +72,15 @@ The shape of the actual bar can be customized using the `type` property of the B
7272
{% previewsample "page.domainurl/code-snippet/bullet-chart/featurebar-cs2" %}
7373
{% endif %}
7474

75-
## Actual Bar Customization
75+
## Actual bar customization
7676

77-
### Border Customization
77+
### Border customization
7878

79-
Using the `valueBorder` property of the bullet chart, you can customize the border `color` and `width` of the actual bar.
79+
Using the [`valueBorder`](../../api/bullet-chart/#valueborder) property of the bullet chart, you can customize the border [`color`](../../api/bullet-chart/border/#color) and [`width`](../../api/bullet-chart/border/#width) of the actual bar.
8080

8181
{% if page.publishingplatform == "typescript" %}
8282

83-
{% tabs %}
83+
{% tabs %}
8484
{% highlight ts tabtitle="index.ts" %}
8585
{% include code-snippet/bullet-chart/featurebar-cs3/index.ts %}
8686
{% endhighlight %}
@@ -105,13 +105,13 @@ Using the `valueBorder` property of the bullet chart, you can customize the bord
105105
{% previewsample "page.domainurl/code-snippet/bullet-chart/featurebar-cs3" %}
106106
{% endif %}
107107

108-
### Fill color and height Customization
108+
### Fill color and height customization
109109

110-
Customize the fill color and height of the actual bar using the `valueFill` and `valueHeight` properties of the bullet chart.
110+
Customize the fill color and height of the actual bar using the [`valueFill`](../../api/bullet-chart/#valuefill) and [`valueHeight`](../../api/bullet-chart/#valueheight) properties of the bullet chart. Also, you can bind the color for the actual bar from [`dataSource`](../../api/bullet-chart/#datasource) for the bullet chart using [`valueFill`](../../api/bullet-chart/#valuefill) property.
111111

112112
{% if page.publishingplatform == "typescript" %}
113113

114-
{% tabs %}
114+
{% tabs %}
115115
{% highlight ts tabtitle="index.ts" %}
116116
{% include code-snippet/bullet-chart/featurebar-cs4/index.ts %}
117117
{% endhighlight %}

ej2-javascript/chart/Chart-types/range-step-area.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@ domainurl: ##DomainURL##
1111

1212
# Range step area Chart in ##Platform_Name## control
1313

14-
## Range Step Area
14+
## Range step area
1515

1616
To render the range step area series, use the series [`type`](../../api/chart/seriesModel/#type) as a `RangeStepArea` and inject the `RangeStepAreaSeries` module using the `Chart.Inject(RangeStepAreaSeries)` method.
1717

1818
{% if page.publishingplatform == "typescript" %}
1919

20-
{% tabs %}
20+
{% tabs %}
2121
{% highlight ts tabtitle="index.ts" %}
2222
{% include code-snippet/chart/chart-types-cs125/index.ts %}
2323
{% endhighlight %}
@@ -49,10 +49,11 @@ The following properties can be used to customize the `area` series.
4949
* [fill](../../api/chart/seriesModel/#fill) – Specifies the color of the area series.
5050
* [opacity](../../api/chart/seriesModel/#opacity) – Specifies the opacity of [fill](../../api/chart/seriesModel/#fill).
5151
* [dashArray](../../api/chart/seriesModel/#dasharray) – Specifies the dashes of series.
52+
* `step` – Specifies the position of the step for the series.
5253

5354
{% if page.publishingplatform == "typescript" %}
5455

55-
{% tabs %}
56+
{% tabs %}
5657
{% highlight ts tabtitle="index.ts" %}
5758
{% include code-snippet/chart/chart-types-cs126/index.ts %}
5859
{% endhighlight %}
@@ -77,7 +78,7 @@ The following properties can be used to customize the `area` series.
7778
{% previewsample "page.domainurl/code-snippet/chart/chart-types-cs126" %}
7879
{% endif %}
7980

80-
## See Also
81+
## See also
8182

8283
* [Data label](../data-labels/)
8384
* [Tooltip](../tool-tip/)

ej2-javascript/chart/Chart-types/stacked-step-area.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@ domainurl: ##DomainURL##
1010
---
1111
# Stacked step area Chart in ##Platform_Name## control
1212

13-
## Stacked Area
13+
## Stacked area
1414

1515
To render a stacked area series, use series [`type`](../../api/chart/seriesModel/#type-string) as `StackingArea` and inject `StackingAreaSeries` module using `Chart.Inject(StackingAreaSeries)` method.
1616

1717
{% if page.publishingplatform == "typescript" %}
1818

19-
{% tabs %}
19+
{% tabs %}
2020
{% highlight ts tabtitle="index.ts" %}
2121
{% include code-snippet/chart/chart-types-cs153/index.ts %}
2222
{% endhighlight %}
@@ -48,10 +48,11 @@ The following properties can be used to customize the `stacked step area` series
4848
* [fill](../../api/chart/seriesModel/#fill) – Specifies the color of the area series.
4949
* [opacity](../../api/chart/seriesModel/#opacity) – Specifies the opacity of [fill](../../api/chart/seriesModel/#fill).
5050
* [dashArray](../../api/chart/seriesModel/#dasharray) – Specifies the dashes of series.
51+
* `step` – Specifies the position of the step for the series.
5152

5253
{% if page.publishingplatform == "typescript" %}
5354

54-
{% tabs %}
55+
{% tabs %}
5556
{% highlight ts tabtitle="index.ts" %}
5657
{% include code-snippet/chart/chart-types-cs154/index.ts %}
5758
{% endhighlight %}
@@ -76,7 +77,7 @@ The following properties can be used to customize the `stacked step area` series
7677
{% previewsample "page.domainurl/code-snippet/chart/chart-types-cs154" %}
7778
{% endif %}
7879

79-
## See Also
80+
## See also
8081

8182
* [Data label](../data-labels/)
8283
* [Tooltip](../tool-tip/)

0 commit comments

Comments
 (0)