1

我对 BI Publisher 比较陌生,迄今为止我只能使用折线图和条形图。

我正在编写一份使用环形图表的报告,图表的默认厚度太大。我希望它看起来像一个呼啦圈而不是甜甜圈,如下所示。但我不知道要更改 XML 中的哪个节点,有人可以建议吗?

图表目前看起来像这样:

电流输出

我希望它看起来像这样:

期望的输出

任何帮助是极大的赞赏。

谢谢

图表代码

<Graph seriesEffect="SE_NONE" graphType="RING">
   <LegendArea visible="false" />
   <SeriesItems>
      <Series id="0" color="#447A27" />
      <Series id="1" color="#96b27f" />
      <Series id="2" color="#c4c5c7" />
      <Series id="3" color="#EA4848" />
      <Series id="4" color="#C41C24" />
   </SeriesItems>
   <SliceLabel visible="false">
      <ViewFormat decimalDigit="0" decimalDigitUsed="true" />
   </SliceLabel>
   <LocalGridData colCount="1" rowCount="{count(.//DATASET[condition='Test'])}">
      <RowLabels>
         <xsl:for-each select=".//DATASET[condition='Test']" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
            <Label>
                <xsl:value-of select="QUALITY_LEVEL" />
            </Label>
         </xsl:for-each>
      </RowLabels>
      <DataValues>
         <xsl:for-each select=".//DATASET[condition='Test']" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
            <RowData>
                <Cell>
                   <xsl:value-of select="COUNT" />
                </Cell>
            </RowData>
         </xsl:for-each>
      </DataValues>
   </LocalGridData>
   <RingTotalLabel>
      <GraphFont size="50" fontColor="#c4c5c7" />
   </RingTotalLabel>
</Graph>
4

0 回答 0