问题描述
我使用谷歌树形图来呈现一些数据。 showScale组件有问题。当树状图呈现时,showScale组件在完全呈现黑色时,它应显示minColor和maxColor之间的渐变。
$ b
fill $ c
fill =url(#_ ABSTRACT_RENDERER_ID_1)
的$ c>属性设置如下:
你能解释一下_ABSTRACT_RENDERER_ID_1是什么吗?
解决方案它可以是渐变填充或图案填充。
文件中的其他位置 - 可能位于< defs>
部分 - 将是以下元素之一,其中 id $ c符合该字符串的$ c>属性:
< linearGradient>
< radialGradient>
< pattern>
I am using a google tree map to render some data. I have a problem with showScale component. When the tree map renders, the showScale component is completely black when it should show a e gradient between minColor and maxColor.
The fill
attribute of the svg component is set as follows :
fill="url(#_ABSTRACT_RENDERER_ID_1)"
Can you explain what _ABSTRACT_RENDERER_ID_1 is ?
解决方案 It will be either a gradient fill or a pattern fill.
Somewhere else in the file - probably in a <defs>
section - will be one of the following elements with an id
attribute that matches that string:
<linearGradient>
<radialGradient>
<pattern>
这篇关于Google TreeMap填充值设置为_ABSTRACT_RENDERER_ID_1的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!