我在我的波斯语(波斯语)Moodle网站上使用Highchart。当我在波斯语页面中使用此图表时,它的图例和工具提示与此链接中的图像非常相似:
use Highchart in Farsi Moodle page with Farsi data
我必须做什么?
当我在英文Moodle网站上使用Highchart和相同的数据时,图表显示为: use Highchart in English Moodle page with Farsi data
我称之为高图的代码的一部分是这样的:
<div id="container0" style="min-width: 400px;
height: 400px;
margin: 0 auto;
margin-top: 2em" align="center">
</div>
我的高清代码:
Highcharts.setOptions({ colors: color_items_array});
var chart;
$(document).ready(function() {
chart = new Highcharts.Chart({
chart: {
renderTo: conta,
type: type,
marginRight: 130,
marginBottom: 25
},
title: {
text: X_title,
x: -20 //center
},
subtitle: {
text: '',
x: -20
},
xAxis: {
categories: student_names2
},
yAxis: {
title: {
text: Y_title
},
plotLines: [{
value: 0,
width: 1,
color: '#080808'
}]
},
tooltip: {
formatter: function() {
return '<b>'+ this.series.name +'</b><br/>'+
this.x +': '+ this.y;
}
},
legend: {
layout: 'vertical',
align: 'right',
verticalAlign: 'top',
x: -10,
y: 100,
borderWidth: 0
},
series: seris_column2
});
});