
Hello,
is it possible to Set the Font size of Messages and adjust the height and spacing of the bubbles so i can have more Messages in a given Window size ?

How do I combine adding shapes programmatically, and also binding them? I have a hierarchical data model and adding shapes pretty much like this, in pseudocode. How then do I bind the data? Currently I have no need for connectors, just shapes.
for each Type1 in model raddiagram.AddShape( new Type1Shape)for each Type2 item in model raddiagram.AddShape( new Type2Shape) for each Type3 in item raddiagram.AddShape( new Type3Shape)
What's the easiest way to get a custom shape based on a rectangle, to draw a model object?
For example, if this is a dummy model object
class model{ public string text { get; set; } public int x { get; set; } public int y { get; set; } public int width { get; set; } public int height { get; set; }}
I want to display these objects using a custom shape that is just a white rectangle with a black border, programmatically. Please give a short sample.

Hi, is it possible to customize the size and content of the print preview window?
thanks
The docs around diagrams are confusing to me.
How do I combine using custom shapes and binding custom objects? It only shows how to programmatically add custom shapes.
How does the shape type names (e.g. "rectangle") relate to the shape (e.g. RoundRect)?
When using the custom shape editor, if I want to modify default shapes, it's strange I need to add the shape to the diagram first to edit the properties. Then I see it in my diagram on my form.
Does the Property Builder combine creating diagrams and creating shapes? What's the point of creating diagrams here?
Once I've created a custom shape in the Property Builder (called say, "CustomShape") how do I use it? Using "customshape" instead of "rectangle" doesn't work.This page https://docs.telerik.com/devtools/winforms/diagram/custom-shapes is very lacking. Yes I've read the "Tools" section too.
Thanks for any clarification.

Hi ,
I have a grid view with base 64 image from api. Now I am binding the base 64 image by the way:
private void Gridview_CreateCell(object sender, GridViewCreateCellEventArgs e)
{
if (e.Column.Index == 0 && e.Row.RowInfo is GridViewDataRowInfo)
{
e.CellElement = new CustomGridImageCellElement(e.Column, e.Row);
}
}
CustomGridImageCellElement.cs
public class CustomGridImageCellElement : GridDataCellElement
{
ImagePrimitive _imagePrimitive;
public CustomGridImageCellElement(GridViewColumn column, GridRowElement row)
: base(column, row)
{
}
public override void Initialize(GridViewColumn column, GridRowElement row)
{
//if (_imagePrimitive == null)
//{
_imagePrimitive = new ImagePrimitive();
_imagePrimitive.Margin = new Padding(3);
this.Children.Add(_imagePrimitive);
this.AutoSizeMode = RadAutoSizeMode.WrapAroundChildren;
//}
base.Initialize(column, row);
}
protected override void SetContentCore(object value)
{
if (this.Value != null && this.Value.ToString() != string.Empty
&& (this.Value.ToString().StartsWith("http") || this.Value.ToString().StartsWith("data:image/")) && _imagePrimitive.Image == null)
{
var imageData = this.Value.ToString();
if (!imageData.StartsWith("http"))
{
byte[] imageBytes = Convert.FromBase64String(imageData.Replace("data:image/JPEG;base64,", ""));
// Convert byte[] to Image
using (var ms = new MemoryStream(imageBytes, 0, imageBytes.Length))
{
_imagePrimitive.Image = System.Drawing.Image.FromStream(ms, true);
}
}
It can display image now., but my problem is when scrolling up and down I see it run the custom cell again and it makes SetContentCore run and display error and slowly. How can I avoid it ?
hi~~~
I need your help~
I want GanttViewTextViewElement export to excel file include hierarchy

I create a radChartView with three bar series and a legend and show it on the form.
Then I change runtime programatically the appearance of the two series (I make them invisible: IsVisible = false), but the legend remains the same.
For comparison - in the MSChart such stupidity is not observed

I have found a few bugs with the Radtreeview during my recent development. I have submitted them as tickets and have received suggestions or agreement that it was an issue. I was wondering if these tickets and resolutions that are suggested and my work arounds that I came up with are posted for others to see or just stay under my tickets and no one else gets to learn from them?
Seems like tickets should be shared where resolutions are found for issues. Not sure if there is a way for the user to make a ticket to share and just make things anonymous or what. Shame if others are having the same issues as me and don't get to learn from others. I know I hardly find good solutions in the forums but sure there are good answers out there in other people's tickets.
Thanks
Patrick
