Quantcast
Channel: GoJS - Northwoods Software
Viewing all articles
Browse latest Browse all 6976

Text cropped inside tooltip

$
0
0

@chabbey wrote:

Sorry to get back again with the same question.
I have a tooltip template defined like this

var tooltipTemplate =
                _$(go.Panel, "Auto", { background : 'black', padding: 10},
                    _$(go.Panel, "Table", { background : 'black', width:380},
                        new go.Binding("itemArray", "tooltip"),
                        {
                            itemTemplate: _$(go.Panel, "TableRow",  // this Panel is a row in the containing Table
                                {
                                    background: "black",  // so this port's background can be picked by the mouse
                                    width: 360,
                                    margin: new go.Margin(0, 50),
                                    fromLinkable: false, toLinkable: false
                                },

                                _$(go.TextBlock,
                                    {
                                        margin: new go.Margin(2, 2), column: 1, font: "13px sans-serif",
                                        width: 150,
                                        isMultiline: true,
                                        wrap: go.TextBlock.WrapDesiredSize,
                                        stroke: 'white',
                                        textAlign: 'left'
                                    },
                                    new go.Binding("text", "name")),
                                _$(go.TextBlock,
                                    {
                                        margin: new go.Margin(2, 2), column: 2, font: "bold 13px sans-serif",
                                        width: 200,
                                        isMultiline: true,
                                        wrap: go.TextBlock.WrapDesiredSize,
                                        stroke: 'white',
                                        textAlign: 'right',
                                        text: "textAlign: 'right'"
                                    },
                                    new go.Binding("text", "value")
                                )
                            )
                        }
                    ));

When the text wraps, there is a small cropping (see the world table and the id)
Is there a way to avoid that ?.

Posts: 4

Participants: 2

Read full topic


Viewing all articles
Browse latest Browse all 6976

Trending Articles