Upgrade plotly.js to version 2.6.3

This commit is contained in:
Jks Liu 2021-11-27 11:42:42 +08:00
parent 58381822d9
commit 1aaecbcac2
2 changed files with 4 additions and 5 deletions

View File

@ -203,7 +203,7 @@ import RecipesPipeline:
# Use fixed version of Plotly instead of the latest one for stable dependency
# Ref: https://github.com/JuliaPlots/Plots.jl/pull/2779
const _plotly_min_js_filename = "plotly-1.57.1.min.js"
const _plotly_min_js_filename = "plotly-2.6.3.min.js"
include("types.jl")
include("utils.jl")

View File

@ -1078,10 +1078,10 @@ function plotly_html_body(plt, style = nothing)
requirejs_prefix = """
requirejs.config({
paths: {
Plotly: '$(plotly_no_ext)'
Plotly2: '$(plotly_no_ext)'
}
});
require(['Plotly'], function (Plotly) {
require(['Plotly2'], function (Plotly2) {
"""
requirejs_suffix = "});"
end
@ -1100,8 +1100,7 @@ end
function js_body(plt::Plot, uuid)
js = """
var PLOT = document.getElementById('$(uuid)');
Plotly.plot(PLOT, $(plotly_series_json(plt)), $(plotly_layout_json(plt)));
Plotly2.newPlot('$(uuid)', $(plotly_series_json(plt)), $(plotly_layout_json(plt)));
"""
end