我目前正在尝试在 APEX 4.26 中显示固定大小的饼图仪表板,但是,它们需要有一个图例并且它们的内容是动态的。这意味着与只有两个标签的图表相比,具有更多标签的图表具有更大的图例和更小的饼图。
我目前可能的解决方案是为每个图表创建两个区域,一个带有饼图,一个带有图例,然后我可以轻松控制这些区域的大小。
显然,我可以轻松地关闭第一个区域的图例,但我在仅显示另一个区域的图例时遇到了一些麻烦。任何人都可以帮助我解决我需要更改或从 XML 中删除的内容吗?(我假设这是这样做的方法)。这是我现在的 XML:
<?xml version = "1.0" encoding="utf-8" standalone = "yes"?>
<anychart>
<settings>
<animation enabled="true"/>
<no_data show_waiting_animation="False">
<label>
<text>#NO_DATA_MESSAGE#</text>
<font family="Verdana" bold="yes" size="10"/>
</label>
</no_data>
</settings>
<margin left="0" top="-10" right="0" bottom="0" />
<charts>
<chart plot_type="Pie" name="chart_3232705401305025">
<chart_settings>
<title enabled="False" />
<chart_background>
<fill type="Solid" color="0xffffff" opacity="0" />
<border enabled="false"/>
<corners type="Square"/>
</chart_background>
<data_plot_background>
</data_plot_background>
<legend enabled="true" position="Bottom" align="Near" elements_layout="Horizontal" ignore_auto_item="True">
<title enabled="False"/>
<icon>
<marker enabled="true" />
</icon>
<items>
<item source="Points" />
</items>
<font family="Tahoma" size="10" color="0x000000" />
</legend>
<chart_animation type="Appear" interpolation_type="Quadratic" show_mode="OneByOne"/>
</chart_settings>
<data_plot_settings enable_3d_mode="false" >
<pie_series style="Aqua">
<tooltip_settings enabled="true">
<format><![CDATA[{%Name}{enabled:False} - {%Value}{numDecimals:0,decimalSeparator:.,thousandsSeparator:\,}]]></format>
<font family="Tahoma" size="10" color="0x000000" />
<position anchor="Float" valign="Top" padding="10" />
</tooltip_settings>
<label_settings enabled="false"/>
<pie_style>
</pie_style>
<marker_settings enabled="True" >
<marker type="None" />
</marker_settings>
<connector color="Black" opacity="0.4"/>
</pie_series>
</data_plot_settings>
#DATA#
</chart>
</charts>
</anychart>
非常感谢任何指针!或者任何关于实现这一目标的更简单方法的好主意。
谢谢!