<telerik:RadChart x:Name="Chart_Issure_Long" ItemsSource="{Binding IssureLongList}" telerik:StyleManager.Theme="{DynamicResource MetroStyle}"> <telerik:RadChart.SeriesMappings> <telerik:SeriesMapping> <telerik:SeriesMapping.SeriesDefinition> <telerik:PieSeriesDefinition LegendDisplayMode="DataPointLabel" ShowItemToolTips="True" ItemLabelFormat="#%{p}" ItemToolTipFormat="#LEGENDLABEL{C4} #Y{C2}" ShowItemLabels="True" LabelOffset="1.2" /> </telerik:SeriesMapping.SeriesDefinition> <telerik:SeriesMapping.ItemMappings> <telerik:ItemMapping DataPointMember="YValue" FieldName="IssurePosSummary.MarketCapitlization" /> <telerik:ItemMapping DataPointMember="XCategory" FieldName="IssurePosSummary.IssureName" /> <telerik:ItemMapping DataPointMember="LegendLabel" FieldName="IssurePosSummary.IssureName" /> </telerik:SeriesMapping.ItemMappings> </telerik:SeriesMapping> </telerik:RadChart.SeriesMappings> </telerik:RadChart>
internal override void ProcessCollectionChanged(NotifyCollectionChangedEventArgs args)
{else
if (args.Action == NotifyCollectionChangedAction.Reset && EnumerableExtensions.Count(this.SourceCollection) == 0)
{
....Thanks
TableCell cella = new TableCell();
cella.PreferredWidth = new TableWidthUnit(col2);
Paragraph p = new Paragraph();
Span sp = new Span("Flight Information");
sp.Underline = true; // Does Not work
sp.FontFamily = new System.Windows.Media.FontFamily("Calibri");
sp.FontSize = size * 1.33;
p.Inlines.Add(sp);
cella.Blocks.Add(p);
header.Cells.Add(cella);
table.Rows.Add(header);
I am creating a cell in a table, Underline property is read-only, do you have an example that I could use to underline the text of the span I am creating?
Thank-you
Stuart Cotts
