Interface ISection

All Superinterfaces:
IContent<ISection>, IHasAttributes<ISection>, IHasId<ISection>
All Known Subinterfaces:
IAccordionSection, IEventDataSection, IPage, ITimelineItem, IVerticalContainer

public interface ISection extends IContent<ISection>, IHasAttributes<ISection>
  • Method Details

    • graph

      void graph(Consumer<IGraph> consumer)
      Will add a graph to the page or Vertical Container. Graphs can contain line, bar, area components defined by writing to the consumer provided.
      Parameters:
      consumer - to populate the graph
    • graph

      default void graph(Width width, Consumer<IGraph> consumer)
    • graph

      default void graph(Width width, int height, Consumer<IGraph> consumer)
    • pieChart

      void pieChart(Consumer<IPieChart> consumer)
      Will add a pie chart to the page or Vertical Container.
      Parameters:
      consumer - to populate the chart
    • pieChart

      default void pieChart(Width width, Consumer<IPieChart> consumer)
    • pieChart

      default void pieChart(Width width, int height, Consumer<IPieChart> consumer)
    • geoMap

      void geoMap(Consumer<IGeoMap> consumer)
      Add a geographical map on which you can put pins and draw lines
      Parameters:
      consumer - to populate the map
    • geoMap

      default void geoMap(Width width, Consumer<IGeoMap> consumer)
    • geoMap

      default void geoMap(Width width, int height, Consumer<IGeoMap> consumer)
    • iframe

      void iframe(Consumer<IIFrame> consumer)
    • iframe

      default void iframe(String src)
    • iframe

      default void iframe(Width width, Consumer<IIFrame> consumer)
    • stepper

      void stepper(int activeStep, Consumer<IStepper> consumer)
      Add a stepper component, which display progress through a sequence of logical and numbered steps.
      Parameters:
      activeStep - the currently active step (zero based)
      consumer - to populate the stepper
    • svg

      void svg(Consumer<ISVG> consumer)
    • helpDetails

      void helpDetails(IString tooltip, Consumer<IContent> consumer)
      Provide a help page and tooltip for the section
      Parameters:
      tooltip - tooltip displayed on help icon hover
      consumer - to populate the help section