Hello,
I have a pipeline type chart as a part of my dashboard. The chart has labels (or legends) docked to the right. The problem is that by default the text is cut at some point and three dots are added to the end. I'd like to make the legend area wider so that
the text would be displayed entirely.
Here's my XML right now. I tried to use Legend.MaximumAutoSize property but I doesn't do anything? I've tried almost everything I can imagine so I decided to ask help here.
<visualization>
<visualizationid>{DAB9876F-5DD3-E211-89F1-78E3B519B0A5}</visualizationid>
<name>Projects (euro)</name>
<primaryentitytypecode>cre_project</primaryentitytypecode>
<datadescription>
<datadefinition>
<fetchcollection>
<fetch mapping="logical" aggregate="true">
<entity name="cre_project">
<attribute groupby="true" alias="_CRMAutoGen_groupby_column_Num_0" name="cre_projectstate" />
<attribute alias="_CRMAutoGen_aggregate_column_Num_0" name="cre_value" aggregate="sum" />
</entity>
</fetch>
</fetchcollection>
<categorycollection>
<category alias="_CRMAutoGen_groupby_column_Num_0">
<measurecollection>
<measure alias="_CRMAutoGen_aggregate_column_Num_0" />
</measurecollection>
</category>
</categorycollection>
</datadefinition>
</datadescription>
<presentationdescription>
<Chart Palette="None" PaletteCustomColors="55,118,193; 197,56,52; 149,189,66; 117,82,160; 49,171,204; 255,136,35; 97,142,206; 209,98,96; 168,203,104; 142,116,178; 93,186,215; 255,155,83">
<Series>
<Series ShadowOffset="0" IsValueShownAsLabel="True" Font="{0}, 9.5px" LabelForeColor="59, 59, 59" ChartType="Funnel" CustomProperties="FunnelLabelStyle=Outside, FunnelNeckHeight=0, FunnelPointGap=1, FunnelNeckWidth=5 ">
<SmartLabelStyle Enabled="True" />
</Series>
</Series>
<ChartAreas>
<ChartArea>
<Area3DStyle Enable3D="True" />
</ChartArea>
</ChartAreas>
<Legends>
<Legend Alignment="Center" LegendStyle="Table" Docking="right" IsTextAutoFit="True" IsEquallySpacedItems="True" ShadowColor="0, 0, 0, 0" ForeColor="59, 59, 59" MaximumAutoSize="50" TextWrapThreshold="30" />
</Legends>
<Titles>
<Title Alignment="TopLeft" DockingOffset="-3" Font="{0}, 13px" ForeColor="0, 0, 0"></Title>
</Titles>
</Chart>
</presentationdescription>
<isdefault>false</isdefault>
</visualization>
Thank you in advance.