SOLVED: Showing rrd4j chart in a subgroup view

Hi All,

I have a chart configured in my sitemap file which successfully displays an rrd4j chart on my main openhab page. I want to move this chart to a subview using groups in my item file. Is this possible?

Thanks,
Randy

Not possible using Groups. You can create a sub Frame that behaves a lot like a Group and put your Items and Chart on that subframe individually.

    Text item=MyGroup {
        Frame {
            // Items
            // Chart
        }
    }

Exactly what I was looking for!
Thank-you rlkoshak! :slight_smile: