Silverlight Toolkit Chart: Assign Hyperlink to Axis
问题 I have a simple Silverlight Toolkit Chart which is bound to a collection of the following type: public class ChartItemClass { public string Name { get; set; } public double Value { get; set; } public string Url { get; set; } } I can get a Chart to display the Name (X-axis) and Value (Y-axis) correctly, but I would like the labels on the X-axis to be HyperlinkButtons to the Url property. The X-axis label should be something like the following: <HyperlinkButton Content="*Name Property Here*"