Warning: file_get_contents(/data/phpspider/zhask/data//catemap/4/regex/16.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Oracle 双环图厚度_Oracle_Charts_Bi Publisher - Fatal编程技术网

Oracle 双环图厚度

Oracle 双环图厚度,oracle,charts,bi-publisher,Oracle,Charts,Bi Publisher,我是BI Publisher的新手,到目前为止,我只使用线条图和条形图 我正在编写一份使用环形图表的报告,图表的默认厚度太大。我希望它看起来像一个呼啦圈,而不是甜甜圈,如下所示。但是我不知道要在XML中更改哪个节点,有人可以建议吗 图表当前如下所示: 我希望它看起来像这样: 非常感谢您的帮助 谢谢 图表代码 <Graph seriesEffect="SE_NONE" graphType="RING"> <LegendArea visible="false" />

我是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>