Questions tagged [winrt-xaml-toolkit]

WinRT XAML Toolkit is an open source library with controls, extensions and helper classes for Windows Store applications utilizing Windows Runtime XAML.

WinRT XAML Toolkit is an open source library with controls, extensions and helper classes for Windows Store applications utilizing Windows Runtime XAML.

Features

  • attached behaviors
  • Controls
  • Converters
  • Extension methods
  • Imaging helpers
  • IO helpers
  • visual tree helpers
  • AwaitableUI

See also

120 questions
1
vote
1 answer

Change size of a WatermarkText into a WatermarkTextBox with WinRT XAML Toolkit

I use this lib : http://winrtxamltoolkit.codeplex.com/ I want to specify the FontSize of the WatermarkText, how can I do that ? Thanks
1
vote
2 answers

WinRT Xaml Toolkit Bar Chart error?

Whenever I use a chart with a Line series of column series (any series other than Pie Series), I have this error: Could not find any resources appropriate for the specified culture or the neutral culture. Make sure …
Mina Wissa
  • 10,923
  • 13
  • 90
  • 158
1
vote
2 answers

Hide DataPoints in chart control from WinRT XAML Toolkit

Is it possible to hide the data points in the chart control from the WinRT XAML Toolkit from CodePlex? I'm using a LineSeries and only want a line without the dots.
0
votes
1 answer

setup ColumnChart from WinRTXamlToolkit

I'm trying to setup Column Chart from WinRTXamlToolkit. Let me ask: Is there any guide for charts from this lib? Or which way you found the easiest to learn using charts? How can I put labels near axises? In points like on below image: P0:…
Grzegorz Dev
  • 3,073
  • 1
  • 18
  • 22
0
votes
1 answer

library for drawing xy-chart in UWP

Which chart libraries for UWP (best free) can draw xy-chart? I meant chart which: draws line between sequential points: p0, p1, p2, ... x-axis is not a simple series of values: 1,2,3,4.. Example data: x 1.0 2.4 5.6 ... y 2.4 3.5 1.2 I tried WinRT…
Grzegorz Dev
  • 3,073
  • 1
  • 18
  • 22
0
votes
2 answers

Reverse the order of legend items in chart with a StackedAreaSeries

productionSeries = new StackedAreaSeries(); . . . foreach (IEnergyConverter conv in model.GetProducer()) { SeriesDefinition ser = new SeriesDefinition //creating a new seriesdefinition { …
0
votes
1 answer

How to Expand and collapse WinRTXamlToolkit Treeview programmatically?

Can someone guide me how programmatically expand and collapse the tree and subtrees? I currently do not use a property called IsExpand. My view
SurenSaluka
  • 1,534
  • 3
  • 18
  • 36
0
votes
1 answer

Unable to reorder items in GridView when WrapPanel is used UWP

And am creating a sorting app and in some cases i will hide the gridview item and i encountered the same error as this person: Hide GridViewItem and reposition items in GridView So I implemented the fix and it worked, but it suddenly disallowed be…
Annonymous177
  • 563
  • 2
  • 10
  • 21
0
votes
0 answers

How to bind to IsExpanded property - to persist the TreeView's expanded state?

In the ViewModel I have defined a bool ShouldExpand property, bound to it in from the TreeView's itemcontainerstyle - it does not work. This answer (WinRT XAML Toolkit TreeView Save state) would've answered my question, but it does not work... Is…
erikT
  • 21
  • 2
0
votes
2 answers

WinRT XAML toolkit lineseries chart displays wrong results

I have a UWP app to control a kiln.I represent the temperature of the kiln over time in a Linegraph from the WinRT XAML Toolkit. To display I use this XAML:
leof
  • 25
  • 1
  • 7
0
votes
1 answer

WinRT Xaml ToolKit change Column width in Column Series

I am testing WinRT Xaml toolkit and have a question like this. In Column Series when i am using sample data that for 2 consecutive months like first picture, the column width auto calculate nicely. But when i used sample data for 2 non-consecutive…
Dant
  • 89
  • 9
0
votes
2 answers

WinRTXAML chart, control style for top label, code

I'm using the WinRTXamlToolkit.Controls.DataVisualization.Charting.Chart object, with a dependent axis integer of 0/1, and an independent axis of time. I'd like to suppress or perhaps rotate the labels at the top of the chart. Are the styles found…
JohnKoz
  • 908
  • 11
  • 21
0
votes
0 answers

The type 'StackedColumnSeries' does not support direct content

I am trying to use WinRTXamlToolkit.Controls.DataVisualization.UWP to show diagrams and charts, but i run into the following problem: What should I do to fix this?
Colosh
  • 135
  • 2
  • 11
0
votes
1 answer

UWP WinRTXamlToolkit: Chart labels cut off

I'm using the charts of the WinRTXamlToolkit for an UWP-App. Using an 720p display or better (e.g. Lumia 640) the chart looks just fine, but using a device with a lower resolution (e.g. Lumia 535 at 960x540), the edges of the chart are cut off. I've…
Jerome Dreyer
  • 144
  • 10
0
votes
1 answer

How to draw a straight line at Value X with WinRTXamlToolkit.Controls.DataVisualization?

I've created a bar chart via the below code however I'd like to add the red line at some X value as seen in the image below. Is this possible? And if so, how could I accomplish this?
RoboLam
  • 488
  • 6
  • 14