Trait treemap::MapModel

source ·
pub trait MapModel {
    fn get_items(&self) -> Vec<Box<dyn Mappable>>;
}
Expand description

Model object used by MapLayout to represent data for a treemap.

Required Methods

Get the list of items in this model. It returns an array of the Mappable objects in this MapModel.

Implementors