【发布时间】:2015-10-28 07:15:38
【问题描述】:
我正在使用 FusionChartXT,我的折线图在 IE 中不显示 div 线。
现在我查看了 svg 代码 这是 internet-explorer 中一个 divline 的代码:
<path xmlns="http://www.w3.org/2000/svg" style="fill: none; stroke: #bbbbbb; stroke-opacity: 0.7;" fill="none" stroke="#bbbbbb" stroke-dasharray="-6" stroke-opacity="0.7" stroke-width="1" d="M 32 438.5 L 438 438.5" shape-rendering="crispEdges" />
这是 Chrome 中的代码,其中显示了该行:
<path d="M33,167.5L438,167.5" stroke="#bbbbbb" stroke-opacity="0.7" stroke-width="1" stroke-dasharray="-6" fill="none" shape-rendering="crispEdges" style="stroke: rgb(187, 187, 187); stroke-opacity: 0.7; fill: none; shape-rendering: crispEdges;"></path>
所以因为我不太擅长 svg 图形,所以我不明白为什么它在 IE 中不起作用。
更新
IE 中有一个错误会导致带有标记的路径无法正确呈现。但我真的不知道我的代码中是否有标记。
【问题讨论】:
标签: html google-chrome internet-explorer svg