Example doesn't work

https://www.fusetools.com/docs/fuse/layouts/columnlayout
This example doesn’t work

<Panel>
    <ColumnLayout />
    <Each Count="10">
        <Circle Margin="5" Color="Blue" />
    </Each>
</Panel>

Can you be a little more specific? How doesn’t it work? Is there an error message? Does it render wrong? Where are you testing it? Which version of Fuse are you running? etc. It’s easier to help if there’x context for your statement. :slight_smile:

It sure does work, however, the snippets in documentation are there only for illustration purposes and can’t be expected to do anything meaningful on their own. You need to put things into perspective, and actually use them.

To understand why that snippet didn’t produce any visual effect, you should spend some time reading about how Layout works in Fuse.

And then you can give this slightly altered snippet a go:

<App>
	<Panel>
	    <ColumnLayout />
	    <Each Count="10">
	        <Circle Width="25" Height="25" Margin="5" Color="Blue" />
	    </Each>
	</Panel>
</App>