You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The first `escount` expression retrieves the number of flights that were cancelled. The second `escount` expression retrieves the total number of flights.
881
+
840
882
*Accepts:* `filter`
841
883
842
884
[cols="3*^<"]
@@ -867,6 +909,34 @@ Default: `_all`
867
909
868
910
Query Elasticsearch for raw documents. Specify the fields you want to retrieve, especially if you are asking for a lot of rows.
This retrieves the first 10000 documents data from the `kibana_sample_data_ecommerce` index sorted by `order_date` in ascending order, and only requests the `customer_gender`, `taxful_total_price`, and `order_date` fields.
939
+
870
940
*Accepts:* `filter`
871
941
872
942
[cols="3*^<"]
@@ -915,6 +985,23 @@ Default: `_all`
915
985
916
986
Queries Elasticsearch using Elasticsearch SQL.
917
987
988
+
*Expression syntax*
989
+
[source,js]
990
+
----
991
+
essql query="SELECT * FROM "logstash*""
992
+
essql "SELECT * FROM "apm*"" count=10000
993
+
----
994
+
995
+
*Code example*
996
+
[source,text]
997
+
----
998
+
filters
999
+
| essql query="SELECT Carrier, FlightDelayMin, AvgTicketPrice FROM "kibana_sample_data_flights""
1000
+
| table
1001
+
| render
1002
+
----
1003
+
This retrieves the `Carrier`, `FlightDelayMin`, and `AvgTicketPrice` fields from the "kibana_sample_data_flights" index.
1004
+
918
1005
*Accepts:* `filter`
919
1006
920
1007
[cols="3*^<"]
@@ -1107,7 +1194,7 @@ Default: `false`
1107
1194
[[font_fn]]
1108
1195
=== `font`
1109
1196
1110
-
Creates a font style.
1197
+
Create a font style.
1111
1198
1112
1199
*Expression syntax*
1113
1200
[source,js]
@@ -1244,7 +1331,7 @@ Alias: `format`
1244
1331
[[formatnumber_fn]]
1245
1332
=== `formatnumber`
1246
1333
1247
-
Formats a number into a formatted number string using the <<numeral, numeral pattern syntax>>.
1334
+
Formats a number into a formatted number string using the Numeral pattern.
1248
1335
1249
1336
*Expression syntax*
1250
1337
[source,js]
@@ -1276,7 +1363,7 @@ The `formatnumber` subexpression receives the same `context` as the `progress` f
1276
1363
1277
1364
Alias: `format`
1278
1365
|`string`
1279
-
|A <<numeral, numeral pattern>> string. For example, `"0.0a"` or `"0%"`.
1366
+
|A Numeral pattern format string. For example, `"0.0a"` or `"0%"`.
1280
1367
|===
1281
1368
1282
1369
*Returns:* `string`
@@ -1559,6 +1646,34 @@ Alias: `value`
1559
1646
[[m_fns]]
1560
1647
== M
1561
1648
1649
+
[float]
1650
+
[[mapCenter_fn]]
1651
+
=== `mapCenter`
1652
+
1653
+
Returns an object with the center coordinates and zoom level of the map.
1654
+
1655
+
*Accepts:* `null`
1656
+
1657
+
[cols="3*^<"]
1658
+
|===
1659
+
|Argument |Type |Description
1660
+
1661
+
|`lat` ***
1662
+
|`number`
1663
+
|Latitude for the center of the map
1664
+
1665
+
|`lon` ***
1666
+
|`number`
1667
+
|Longitude for the center of the map
1668
+
1669
+
|`zoom` ***
1670
+
|`number`
1671
+
|Zoom level of the map
1672
+
|===
1673
+
1674
+
*Returns:* `mapCenter`
1675
+
1676
+
1562
1677
[float]
1563
1678
[[mapColumn_fn]]
1564
1679
=== `mapColumn`
@@ -1612,6 +1727,12 @@ Default: `""`
1612
1727
|The CSS font properties for the content. For example, "font-family" or "font-weight".
1613
1728
1614
1729
Default: `${font}`
1730
+
1731
+
|`openLinksInNewTab`
1732
+
|`boolean`
1733
+
|A true or false value for opening links in a new tab. The default value is `false`. Setting to `true` opens all links in a new tab.
0 commit comments