Skip to content

Commit e7f6d4d

Browse files
committed
rebuilt site
1 parent 3f2ffdf commit e7f6d4d

File tree

4,760 files changed

+684410
-59508
lines changed

Some content is hidden

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

4,760 files changed

+684410
-59508
lines changed

NEWS.md

Lines changed: 1 addition & 0 deletions

R/add.R

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -846,6 +846,17 @@ e_graph.echarts4r <- function(e, layout = "force", name = NULL, rm_x = TRUE, rm_
846846
)
847847

848848
e$x$opts$series <- append(e$x$opts$series, list(serie))
849+
850+
# add dependency
851+
path <- system.file("htmlwidgets/lib/echarts-4.8.0", package = "echarts4r")
852+
dep <- htmltools::htmlDependency(
853+
name = "echarts-gl",
854+
version = "1.1.2",
855+
src = c(file = path),
856+
script = "echarts-gl.min.js"
857+
)
858+
859+
e$dependencies <- append(e$dependencies, list(dep))
849860

850861
e
851862
}

R/add_.R

Lines changed: 77 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1201,6 +1201,17 @@ e_lines_3d_ <- function(e, source_lon, source_lat, target_lon, target_lat, sourc
12011201
e$x$opts$baseOption$series <- append(e$x$opts$baseOption$series, list(serie_opts))
12021202
e$x$opts$baseOption$legend$data <- append(e$x$opts$baseOption$legend$data, list(name))
12031203
}
1204+
1205+
# add dependency
1206+
path <- system.file("htmlwidgets/lib/echarts-4.8.0", package = "echarts4r")
1207+
dep <- htmltools::htmlDependency(
1208+
name = "echarts-gl",
1209+
version = "1.1.2",
1210+
src = c(file = path),
1211+
script = "echarts-gl.min.js"
1212+
)
1213+
1214+
e$dependencies <- append(e$dependencies, list(dep))
12041215

12051216
e
12061217
}
@@ -1285,6 +1296,17 @@ e_line_3d_ <- function(e, y, z, name = NULL, coord_system = NULL, rm_x = TRUE, r
12851296
e$x$opts$baseOption$series <- append(e$x$opts$baseOption$series, list(serie_opts))
12861297

12871298
}
1299+
1300+
# add dependency
1301+
path <- system.file("htmlwidgets/lib/echarts-4.8.0", package = "echarts4r")
1302+
dep <- htmltools::htmlDependency(
1303+
name = "echarts-gl",
1304+
version = "1.1.2",
1305+
src = c(file = path),
1306+
script = "echarts-gl.min.js"
1307+
)
1308+
1309+
e$dependencies <- append(e$dependencies, list(dep))
12881310

12891311
e
12901312
}
@@ -1379,6 +1401,17 @@ e_bar_3d_ <- function(e, y, z, bind = NULL, coord_system = "cartesian3D", name =
13791401
e$x$opts$baseOption$series <- append(e$x$opts$baseOption$series, list(serie_opts))
13801402

13811403
}
1404+
1405+
# add dependency
1406+
path <- system.file("htmlwidgets/lib/echarts-4.8.0", package = "echarts4r")
1407+
dep <- htmltools::htmlDependency(
1408+
name = "echarts-gl",
1409+
version = "1.1.2",
1410+
src = c(file = path),
1411+
script = "echarts-gl.min.js"
1412+
)
1413+
1414+
e$dependencies <- append(e$dependencies, list(dep))
13821415

13831416
e
13841417
}
@@ -1430,6 +1463,17 @@ e_surface_ <- function(e, y, z, bind = NULL, name = NULL, rm_x = TRUE, rm_y = TR
14301463
e$x$opts$series <- append(e$x$opts$series, list(e.serie))
14311464

14321465
}
1466+
1467+
# add dependency
1468+
path <- system.file("htmlwidgets/lib/echarts-4.8.0", package = "echarts4r")
1469+
dep <- htmltools::htmlDependency(
1470+
name = "echarts-gl",
1471+
version = "1.1.2",
1472+
src = c(file = path),
1473+
script = "echarts-gl.min.js"
1474+
)
1475+
1476+
e$dependencies <- append(e$dependencies, list(dep))
14331477

14341478
e
14351479
}
@@ -1571,7 +1615,17 @@ e_scatter_3d_ <- function(e, y, z, color = NULL, size = NULL, bind = NULL, coord
15711615

15721616
e$x$opts$baseOption$series <- append(e$x$opts$baseOption$series, list(e_serie))
15731617
}
1574-
1618+
1619+
# add dependency
1620+
path <- system.file("htmlwidgets/lib/echarts-4.8.0", package = "echarts4r")
1621+
dep <- htmltools::htmlDependency(
1622+
name = "echarts-gl",
1623+
version = "1.1.2",
1624+
src = c(file = path),
1625+
script = "echarts-gl.min.js"
1626+
)
1627+
1628+
e$dependencies <- append(e$dependencies, list(dep))
15751629

15761630
e
15771631
}
@@ -1615,6 +1669,17 @@ e_flow_gl_ <- function(e, y, sx, sy, color = NULL, name = NULL, coord_system = N
16151669
serie$coordinateSystem <- coord_system
16161670

16171671
e$x$opts$series <- append(e$x$opts$series, list(serie))
1672+
1673+
# add dependency
1674+
path <- system.file("htmlwidgets/lib/echarts-4.8.0", package = "echarts4r")
1675+
dep <- htmltools::htmlDependency(
1676+
name = "echarts-gl",
1677+
version = "1.1.2",
1678+
src = c(file = path),
1679+
script = "echarts-gl.min.js"
1680+
)
1681+
1682+
e$dependencies <- append(e$dependencies, list(dep))
16181683

16191684
e
16201685
}
@@ -1685,6 +1750,17 @@ e_scatter_gl_ <- function(e, y, z, name = NULL, coord_system = "geo", rm_x = TRU
16851750

16861751
if(e$x$tl)
16871752
e$x$opts$baseOption$series <- append(e$x$opts$baseOption$series, list(serie_opts))
1753+
1754+
# add dependency
1755+
path <- system.file("htmlwidgets/lib/echarts-4.8.0", package = "echarts4r")
1756+
dep <- htmltools::htmlDependency(
1757+
name = "echarts-gl",
1758+
version = "1.1.2",
1759+
src = c(file = path),
1760+
script = "echarts-gl.min.js"
1761+
)
1762+
1763+
e$dependencies <- append(e$dependencies, list(dep))
16881764

16891765
e
16901766
}

R/map.R

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -236,6 +236,17 @@ e_map_3d_ <- function(e, serie = NULL, map = "world", name = NULL, coord_system
236236

237237
e$dependencies <- append(e$dependencies, list(dep))
238238
}
239+
240+
# add dependency
241+
path <- system.file("htmlwidgets/lib/echarts-4.8.0", package = "echarts4r")
242+
dep <- htmltools::htmlDependency(
243+
name = "echarts-gl",
244+
version = "1.1.2",
245+
src = c(file = path),
246+
script = "echarts-gl.min.js"
247+
)
248+
249+
e$dependencies <- append(e$dependencies, list(dep))
239250

240251
e
241252
}

docs/LICENSE.html

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/articles/actions-buttons.html

Lines changed: 11 additions & 13 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/articles/actions-buttons_files/echarts4r-4.6.0/custom/renderers.js renamed to docs/articles/actions-buttons_files/echarts-gl-1.1.2/custom/renderers.js

File renamed without changes.
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
@media print {
2+
div.echarts4r.html-widget.html-widget-static-bound {
3+
page-break-inside: avoid;
4+
}
5+
}

docs/articles/actions-buttons_files/echarts4r-4.6.0/dataTool.min.js renamed to docs/articles/actions-buttons_files/echarts-gl-1.1.2/dataTool.min.js

File renamed without changes.

docs/articles/actions-buttons_files/echarts4r-4.6.0/ecStat.min.js renamed to docs/articles/actions-buttons_files/echarts-gl-1.1.2/ecStat.min.js

File renamed without changes.

0 commit comments

Comments
 (0)