Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我以编程方式将带有字段的数据网格放置在舞台上,并将矩形形状放置在同一舞台上。我现在需要做的是让数据网格的列中的单元格包含矩形,而不是文本。
简而言之,我想要实现的是在数据网格内有一个图表,例如,Col1 有名称,Col 2 有分数,而 Col3 有矩形,代表分数长度的百分比。它将与百分比分数一样长或短。我能够动态改变长度,但我不知道如何将它放在网格的单元格中。
感谢您的帮助。
我被锁定在考虑将其作为列添加到数据网格中。我想只是将形状添加到数据网格中,即
datagrid.addChild(myShape);
然后定位它!