Closed
Description
Hello,
In the previous versions, the HTML decimal characters were correctly decoded. In the latest version (1.30.0), they are rendered "as is".
<html>
<head>
<script src="https://cdn.plot.ly/plotly-latest.min.js"></script>
</head>
<body>
<div id="tester" style="width:90%;height:250px;"></div>
<script>
TESTER = document.getElementById('tester');
var data = [{
x: [1, 2, 3, 4, 5],
y: [1, 2, 4, 8, 16]
}];
var layout = {
margin: {
t: 0
},
plot_bgcolor: "rgb(254, 247, 234)",
xaxis: {
title: "Δ",
showgrid: false,
tickvals: [2,3],
ticktext: ["a", "b"]
}
};
Plotly.plot(TESTER, data, layout);
</script>
</body>
</html>
Metadata
Metadata
Assignees
Labels
No labels