|
|
|
@ -336,13 +336,13 @@
|
|
|
|
|
subXOrient = __axis_rotated ? "left" : "bottom"; |
|
|
|
|
|
|
|
|
|
var translate = { |
|
|
|
|
main : function () { return "translate(" + (Math.ceil(margin.left) + 0.5) + "," + (Math.ceil(margin.top) + 0.5) + ")"; }, |
|
|
|
|
context : function () { return "translate(" + (Math.ceil(margin2.left) + 0.5) + "," + (Math.ceil(margin2.top) + 0.5) + ")"; }, |
|
|
|
|
main : function () { return "translate(" + asHalfPixel(margin.left) + "," + asHalfPixel(margin.top) + ")"; }, |
|
|
|
|
context : function () { return "translate(" + asHalfPixel(margin2.left) + "," + asHalfPixel(margin2.top) + ")"; }, |
|
|
|
|
legend : function () { return "translate(" + margin3.left + "," + margin3.top + ")"; }, |
|
|
|
|
x : function () { return "translate(0," + (__axis_rotated ? 0 : height) + ")"; }, |
|
|
|
|
y : function () { return "translate(0," + (__axis_rotated ? height : 0) + ")"; }, |
|
|
|
|
y2 : function () { return "translate(" + (__axis_rotated ? 0 : width) + "," + (__axis_rotated ? 1 : 0) + ")"; }, |
|
|
|
|
subx : function () { return "translate(0," + (__axis_rotated ? 0 : Math.ceil(height2)) + ")"; }, |
|
|
|
|
subx : function () { return "translate(0," + (__axis_rotated ? 0 : height2) + ")"; }, |
|
|
|
|
arc: function () { return "translate(" + width / 2 + "," + height / 2 + ")"; } |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
@ -355,6 +355,10 @@
|
|
|
|
|
return "url(" + document.URL.split('#')[0] + "#" + id + ")"; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
function asHalfPixel(n) { |
|
|
|
|
return Math.ceil(n) + 0.5; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
function transformMain(withTransition, transitions) { |
|
|
|
|
var xAxis, yAxis, y2Axis; |
|
|
|
|
if (transitions && transitions.axisX) { |
|
|
|
|