为什么指针在我的网页图表中如此之粗,但在我的设计页面中却没有。 我有一个饼图,使用标签指针设计在饼外的标签。 在我的设计页面中,指针根据需要很薄。但是在网页上看起来很厚,不知道为什么它会像那样反映出来。 请帮忙解决。
<asp:Chart ID="Chart5" runat="server" Width="600px" height="331px" Palette="None"
PaletteCustomColors="Teal; 255, 128, 0; 192, 192, 0; Maroon; Purple">
<BorderSkin BorderWidth="5" />
<Series>
<%-- <asp:Series Name="Summary group" ChartType="Pie" ChartArea="ChartArea5" IsValueShownAsLabel="true" >
</asp:Series>--%>
<asp:Series Name="Total" ChartType="Pie" ChartArea="ChartArea5" IsValueShownAsLabel="true"
customproperties="PieLabelStyle=Outside, PieLineColor=Black" Label='"#PERCENT"' MarkerSize="1">
</asp:Series>
</Series>
<ChartAreas>
<asp:ChartArea Name="ChartArea5" IsSameFontSizeForAllAxes="true" AlignmentOrientation="Horizontal">
<%--<area3dstyle enable3d="True" inclination="0"></area3dstyle>--%>
</asp:ChartArea>
</ChartAreas>
<Legends>
<asp:Legend Name="Legend5" Alignment="Center" LegendStyle="Table" Docking="Right">
</asp:Legend>
</Legends>
</asp:Chart>