Advanced Forum Search Results
-
Well, I've figured out how to style the different pie slices with different colors. The sample code is found below.
However, I still have not figured out how to get the gradient found in the original chart style. Can this be found in the toolkit source? I've looked to no avail.1 <chartingToolkit:Chart ...
-
Hi David,
Thanks for this! This corrected the issue I was having with formating the value that is displayed in each pie slice tooltip.
However, as a side-effect, all of the pie slices now have the same color (yellow). What can I do to get the different pie slice colors back?
-
The following example illustrates what I'm trying to do to format the PieChartDataPoints as currency. However, it throws a XAML parser exception on the setter markup. I'm at a loss to understand what is wrong here. Hopefully someone on here can set me straight.1 <chartingToolkit:Chart ...
-
I've solved part of my problem with the syntax for formatting BarChart values and axis labels for currency. Below is the code example.1 <chartingToolkit:Chart x:Name="FinancialOverviewChart"
2 Width="420" Height="180" RenderTransformOrigin="0.5,0.5" FontSize="9" ...
-
Thanks for responding.
Unfortunately, I'm still getting the markup wrong somehow since the XAML parser is now complaining (see below).1 <chartingToolkit:Chart x:Name="FinancialOverviewChart"
2 Width="420" Height="180" RenderTransformOrigin="0.5,0.5" FontSize="9" ...
-
Is there a way to do this?
-
I can see your point about the use of app.xaml. In my case, I'm trying to follow the guidance from Microsoft on the parts-and-states model where both the style and the template structure can be changed after-the-fact by the end-user of the control. And as you allude to, the goal of my controls is for them to be reused across my ...
-
Thanks Bruno. I'll start digging into this right away!
-
Hi sladapter.
So the app.xaml contained in my application assembly will contain a keyed reference to my ValueConverter class defined in my control assembly. In turn, the binding definition in my generic.xaml contained in my control assembly will contain a StaticResource reference to the aforementioned keyed resource reference ...
-
Hi sladapter,
So you're saying I should create an app.xaml file in my custom control assembly and move my ValueConverter definition there? Isn't app.xaml just another resource dictionary like generic.xaml?