提交 4d74bbd1 编写于 作者: O Ovilia

fix(sunburst): default values for normal state

上级 5a1bced3
......@@ -132,7 +132,7 @@ SunburstPieceProto.updateData = function (
SunburstPieceProto.onEmphasis = function (highlightPolicy) {
var that = this;
this.node.hostTree.root.eachNode(function (n) {
if (n.piece) {
if (that.node !== n && n.piece) {
if (isNodeHighlighted(n, that.node, highlightPolicy)) {
n.piece.childAt(0).trigger('highlight');
}
......
......@@ -82,6 +82,7 @@ export default SeriesModel.extend({
// could be: 'radial', 'tangential', or 'none'
rotate: 'radial',
show: true,
opacity: 1,
// could be 'inner', 'outside', 'left' or 'right'
// 'left' is for inner side of inside, and 'right' is for outter
// side for inside
......@@ -93,6 +94,7 @@ export default SeriesModel.extend({
itemStyle: {
borderWidth: 1,
borderColor: 'white',
opacity: 1,
emphasis: {},
highlight: {
opacity: 1
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册