Advanced Forum Search Results
-
Ouuups... Sorry avtar... my mistake...
I said it was done quickly...
You don't really need the
LegendItemStyle="{StaticResource LegendItemStyle}"
in this case.
The main reason I added LegendItemStyle was to insert
a list of checkbox (Template using a Rectangle + a legend Title)
to which I could assign a CheckBox_Click function in ...
-
Hi avtar,
Yes it is possible to combine column and line series together using Silverlight 3 Toolkit Chart.
You can add Chart series (ColumnSeries, LineSeries) in your Chart control and
bind each series to the proper IndependentValueBinding & DependentValueBinding values.
This a simple and very quickly done... example showing Total Sales per ...
-
Hi mradblue,
If you feel confident and familiar enough to work with style you can
easily use Chart series of Silverlight Toolkit (They're free...)
I know Pete Brown gave some pretty good examples on
how to customize pie chart and bar charts in his blogs.
Bar ...
-
Hi CaptainCherios,
To display formated text inside of Silverlight you can use a similar approach:
<TextBlock>
This Silverlight 3 demo uses:<LineBreak/>
<Run Foreground="Red" FontFamily="Arial" FontSize="24">• Entity Framework and ...
-
Yes Brad Abrams has written some very nice blogs indeed...
You're very welcome!
-
Hi Leopqdt,
Brad Abrams covers the Authentication and Personalization
topic in details on his blog
Business Apps Example for Silverlight 3 RTM and .NET RIA Services
July Update: Part 26: Authentication and Personalization
You can have a look at the following ...
-
you could try something similar to this:
void dataGrid1_LoadingRow(object sender, DataGridRowEventArgs e)
{
DataGridRow row = e.Row;
var c = row.DataContext as Tasks;
if (c != null && ...
-
Ken is right.
Generally when installing new tools
from .msi files - such as Silverlight Toolkit -
they will load automatically in your toolbox
under Silverlight XAML Controls
in Visual Studio 2008.
Therefore you don't really have to refer to Choose Items.
Note that Silverlight controls will only appear when
you are editing XAML.... and not ...
-
Take time to read....
http://www.microsoft.com/silverlight/locale/en-us/html/readme_2.0.30916.html
Do not change the “Build output path” value to a path that contains non-ASCII characters
If the Build output path option is changed from “ClientBin\” to a path that contains non-ASCII characters,
the Testpage.html PAGE WILL BE RENDERED AS A BLANK ...
-
Yes indeed I'm using Silverlight 3 RTM... Are you?
Actually I'm using SVL 3 RTM since the very first day it was officially released
and even before... and I never encountered any problem with RepeatBehaviour whatsoever.
Why? cause I took time to sit down and READ THE INSTRUCTIONS...
If your system cannot recognize RepeatBehaviour ...