Asked by:
Need to get rid of chart headers

Question
-
Anyone know how?
Thursday, October 10, 2013 5:36 PM
All replies
-
If you want to change Chart Name only in Title section change set ForeColour to Transparent
<Titles>
<Title Alignment="TopLeft" DockingOffset="-3" Font="{0}, 13px" ForeColor="59, 59, 59"></Title>
</Titles>
Full information here: http://crmchartguy.wordpress.com/2013/03/03/removing-axis-titles-legend-and-axis-labels-in-crm-charts-for-ms-crm-2011/
KG
My Dynamics CRM Blog: http://bovoweb.blogspot.com
Thursday, October 10, 2013 6:06 PM -
Tried that but it doesn't work. I've seen it done before just can't workout how.Thursday, October 10, 2013 6:26 PM
-
Paste here chart xml code so maybe we will be able to help more.
KG
My Dynamics CRM Blog: http://bovoweb.blogspot.com
Thursday, October 10, 2013 6:28 PM -
<Chart Palette="None" PaletteCustomColors="91,151,213; 237,125,49; 160,116,166; 255,192,0; 68,114,196; 112,173,71; 37,94,145; 158,72,14; 117,55,125; 153,115,0; 38,68,120; 67,104,43; 124,175,221; 241,151,90; 186,144,192; 255,205,51; 105,142,208; 140,193,104; 50,125,194; 210,96,18; 150,83,159; 204,154,0; 51,90,161; 90,138,57;"> <Series> <Series IsVisibleInLegend="false" ChartType="Line" IsValueShownAsLabel="False" BorderWidth="2" MarkerStyle="Circle" MarkerSize="6" MarkerColor="88, 155, 219" MarkerBorderColor="88, 155, 219" /> </Series> <ChartAreas> <ChartArea BorderColor="White" BorderDashStyle="Solid"> <AxisY LabelAutoFitMinFontSize="6" Title="x" TitleForeColor="255, 255, 255" TitleFont="{0}, 1px" LineColor="255, 255, 255" IntervalAutoMode="VariableCount"> <MajorGrid LineColor="239, 242, 246" /> <MajorTickMark LineColor="165, 172, 181" /> <LabelStyle Font="{0}, 8px" ForeColor="59, 59, 59" /> </AxisY> <AxisX LabelAutoFitMinFontSize="6" LabelAutoFitStyle="LabelsAngleStep90" Title="x" TitleForeColor="255, 255, 255" TitleFont="{0}, 6px" LineColor="255, 255, 255" IntervalAutoMode="VariableCount"> <MajorTickMark LineColor="165, 172, 181" /> <MajorGrid LineColor="Transparent" /> <LabelStyle Font="{0}, 8px" ForeColor="59, 59, 59" /> </AxisX> </ChartArea> </ChartAreas> <Titles> <Title Alignment="TopRight" DockingOffset="-3" Font="{0}, 1px" ForeColor="Transparent" /> </Titles> <Legends> <Legend Alignment="Center" LegendStyle="Table" Docking="right" IsEquallySpacedItems="True" Font="{0}, 1px" ShadowColor="0, 0, 0, 0" ForeColor="255, 255, 255" /> </Legends> </Chart>
This is what I have, but still doesn't get rid of the titles mentioned in the above pic.Thursday, October 10, 2013 6:38 PM -
Syed,
Is this a chart in Dashboard or on the grid.
KG
My Dynamics CRM Blog: http://bovoweb.blogspot.com
Thursday, October 10, 2013 9:07 PM -
It's placed inside a form in CRMFriday, October 11, 2013 6:14 AM
-
I believe that title and subtitle are not included in ChartXML definition. If you have chart enabled in Grid you don't have those two elements but in dashboard and on the form those are added.
KG
My Dynamics CRM Blog: http://bovoweb.blogspot.com
Tuesday, October 15, 2013 1:24 PM