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

Migration 2.0.3 - pb toolTip

$
0
0

@sylvain wrote:

Hello,

I migrated go / js from version 1.8.34 to 2.0.3.

Now, I have a following error in the tooltip in the code below.

TS2345: Argument of type ‘{ toolTip: GraphObject; }’ is not assignable to parameter of type ‘string | EnumValue | GraphObject | Binding | PanelLayout | RowColumnDefinition | (Partial &…’. Type ‘{ toolTip: GraphObject; }’ is not assignable to type ‘(string | EnumValue | GraphObject | Binding | PanelLayout | RowColumnDefinition | (Partial …’. Property ‘includes’ is missing in type ‘{ toolTip: GraphObject; }’.

	let $ = go.GraphObject.make;
	
	// @ts-ignore
	this.palette.nodeTemplate = $(go.Node, go.Panel.Spot,
		// Left area of the node (only the background)
		$("Shape", GO_RECTANGLE,
			{
				strokeWidth: 0,
				desiredSize: new go.Size(50, 70)
			},
			new go.Binding("fill", "_transientProperties", (t) => {
				return t.color;
			})
		),
		// Icon of the node (above the full background)
		$("Shape",
			{
				fill: "#fff",
				strokeWidth: 0,
				margin: 8,
				alignment: go.Spot.Center
			},
			new go.Binding("geometry", "_transientProperties", (t) => {
				return go.Geometry.parse(t.icon, true);
			})
		),
		{
			toolTip:
				$("ToolTip",
					$("TextBlock", { margin: 6 },
						new go.Binding("text", "name"))
				)
		}
	);

do you have an idea?

Posts: 1

Participants: 1

Read full topic


Viewing all articles
Browse latest Browse all 7069

Trending Articles