SVG ファイルがあり、それを Ext.draw.Component にしたいとします。SVG の stop-opacity を Ext.draw.Component アイテムに変換するにはどうすればよいですか?
たとえば、SVG ファイルから、次のようになります。
<linearGradient ="linearGradient2920">
<stop
id="stop2922"
style="stop-color:#000000;stop-opacity:1"
offset="0" />
<stop
id="stop2924"
style="stop-color:#000000;stop-opacity:0"
offset="1" />
</linearGradient>
Ext.draw.Componentではどのように見えるでしょうか? そのように訳しますか?
gradients: [{
{
id: 'linearGradient2920',
angle: 100,
stops: {
0: {
color: '#000000',
opacity: 100 //<---Is this even valid??
},
100: {
color: '#000000',
opactiy: 0 //<---Is this even valid??
}
}
}]