Telerik Forums
UI for WPF Forum
0 answers
65 views

Hi Telerik,

 

How can I get two radSplitContainer to stack on each other in two rows in the same column?

I'm using the outlook template for visual studio and what I want to achieve is to add another gridView as a radSplitContainer under the E-mails radSplitContainer.

It would then be a column with 2 rows and each row contains of a gridView. Row1 would contain the E-mails gridView / radSplitcontainer for e-mails, then row2 would contain another gridView with another itemsource.

 

 

 

 

 

Khoa
Top achievements
Rank 1
 asked on 30 Oct 2018
3 answers
176 views
Hi,

I'm working with new 3DLineSeries.

By default, a line has a triangular section. Can I set a round geometry? I want to obtain "a standard circolar tube".

Thanks, 

marc.
Martin Ivanov
Telerik team
 answered on 30 Oct 2018
1 answer
426 views

I am trying to understand how to prevent my LineAnnotation labels from being cut off.  Here is a contrived example.  I realize I could pick different locations but is there some kind of margin I can give the chart to see the text in the cases shown below? See attached image.

 

<Grid x:Name="LayoutRoot">
    <telerik:RadCartesianChart >
        <telerik:RadCartesianChart.HorizontalAxis>
            <telerik:LinearAxis x:Name="horizontalAxis"  >
            </telerik:LinearAxis>
        </telerik:RadCartesianChart.HorizontalAxis>
        <telerik:RadCartesianChart.VerticalAxis >
            <telerik:LinearAxis />
        </telerik:RadCartesianChart.VerticalAxis>
        <telerik:RadCartesianChart.Annotations>
            <telerik:CartesianGridLineAnnotation Axis="{Binding ElementName=horizontalAxis}"
                                                 Value="48"
                                                 Stroke="#f7706c"
                                                 Label="Label Cut Off At Top"                                                 
                                                 StrokeThickness="1" >
                <telerik:CartesianGridLineAnnotation.LabelDefinition>
                    <telerik:ChartAnnotationLabelDefinition Location="Top"                                                               
                                                            HorizontalOffset="4"  />
                </telerik:CartesianGridLineAnnotation.LabelDefinition>
            </telerik:CartesianGridLineAnnotation>
            <telerik:CartesianGridLineAnnotation Axis="{Binding ElementName=horizontalAxis}"
                                                 Value="108"
                                                 Stroke="#f7706c"
                                                 Label="Label Cut Off To the Right"
                                                 StrokeThickness="1"/>
        </telerik:RadCartesianChart.Annotations>
        <telerik:RadCartesianChart.Series>
            <telerik:ScatterSplineAreaSeries >
                <telerik:ScatterSplineAreaSeries.DataPoints>
                    <telerik:ScatterDataPoint XValue="30" YValue="40"/>
                    <telerik:ScatterDataPoint XValue="70" YValue="25"/>
                    <telerik:ScatterDataPoint XValue="100" YValue="20"/>
                </telerik:ScatterSplineAreaSeries.DataPoints>
            </telerik:ScatterSplineAreaSeries>
        </telerik:RadCartesianChart.Series>
    </telerik:RadCartesianChart>
</Grid>

 

 

Martin Ivanov
Telerik team
 answered on 30 Oct 2018
1 answer
145 views

Hello,

is HtmlFormatProvider supports loading images from disk when <a href /> use such an image? Or there is an event when provider is loading image and I could handle it myself to read image from path and put it as base64 in correct place of raddocument?

Best regards,

Jakub

Tanya
Telerik team
 answered on 30 Oct 2018
0 answers
73 views

Hello, i have a problem.

I need to use the Selected Value from the radDateTimePicker in other VB.NET classes.

If I set the Dim as Public Shared i get an error. "Cannot access non-shared Field 'radDateTimePicker' in shared context"

 

How can I use the SelectedValue in the other class?

 

 

Noah
Top achievements
Rank 1
 asked on 30 Oct 2018
1 answer
227 views

I can't seem to find how I can intercept the hyperlink clicked event from a hyperlink in a cell in a RadSpreadSheet .The RadSpreadSheet is inside a RadRibbonWindow, if that makes a difference.

I've tried doing the following, but it does not work:

public MainWindow()
{
    InitializeComponent();
    this.AddHandler(Hyperlink.ClickEvent, new RoutedEventHandler(HyperlinkClicked));

}

private static void HyperlinkClicked(object sender, RoutedEventArgs e)
{

   // Some code

}

 

What is the correct solution to handle when a hyperlink is clicked?

Martin
Telerik team
 answered on 29 Oct 2018
1 answer
169 views

I want to use MaskedTextInput to replace textbox with StringFormat, it is pretty simple.

<telerik:RadMaskedTextInput Text="{Binding SSN, Mode=TwoWay,UpdateSourceTrigger=PropertyChanged}" InputBehavior="Replace"  Mask="###-##-####" />

I use it to display the SSN in the certain format when I get it from the service. Also I want to update it as well.

At the beginning, it is empty. I tried to insert a random value. But I can only insert the first two number. Sometimes even I can't insert a letter. There is a red X on the right of the textbox, Not sure what is wrong.

Thanks.

Dinko | Tech Support Engineer
Telerik team
 answered on 29 Oct 2018
3 answers
149 views

Hello,

I am using Telerik testing framework.

I need to test RadVerticalLinearGauge/RadHorizontalLinearGauge and RadRadialGauge that contains RadialScale/LinearScale, GaugeRanges, BarIndicator and Needles.

How can I get their properties like: ticks, colors, values of needle and bar, max, min etc.?

Thank's!

Nikolai
Telerik team
 answered on 29 Oct 2018
14 answers
127 views

Hi,
I'm testing your Outlook Template for visual studio, and I see that by marking an e-mail in the data-grid, you can mark the e-mail as read/unread, which make the font bold for the selected e-mail. But this read/unread command only apply for a single marked e-mail in the data-grid. 

I have now made it possible to mark multiple e-mails in the data-grid, but when I upon read/unread command, only the first e-mail I selected is marked unread/read and the rest is ignored. 
How do I enable the read/unread command to apply for all the selected e-mails?

Is it possible to set the documenthost window empty at application startup, instead of viewing the first mail?

Martin Ivanov
Telerik team
 answered on 29 Oct 2018
2 answers
261 views

Hello!

 

I'm using RadDiagramConnection to draw Line with Arrows. When I set StrokeDashArray to some array, for example "5 1" to draw dashed line, I get this dashed line on the border of my arrows.

So would you be so kind to tell me how I can remove these borders from my arrows please?

This is my code:

<telerik:RadDiagramConnection StartPoint="410,100" EndPoint="100,420"
                                                                  SourceCapType="Arrow1Filled" TargetCapType="Arrow1Filled"
                                                                  SourceCapSize="40,40" TargetCapSize="40, 40" StrokeDashArray="5 1"
                                                                  StrokeThickness="5" Background="White" BorderBrush="Transparent"
                                                                  Stroke="Red"
                                                                  />

Best regards,
Tatiana

Tatiana
Top achievements
Rank 1
 answered on 29 Oct 2018
Narrow your results
Selected tags
Tags
+? more
Top users last month
Will
Top achievements
Rank 2
Iron
Motti
Top achievements
Rank 1
Iron
Hester
Top achievements
Rank 1
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Thomas
Top achievements
Rank 2
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Will
Top achievements
Rank 2
Iron
Motti
Top achievements
Rank 1
Iron
Hester
Top achievements
Rank 1
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Thomas
Top achievements
Rank 2
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?