Search Results for

    Show / Hide Table of Contents

    Class AxisCollection

    Contains a collection of IAxis and allows getting of axis by Id

    Inheritance
    java.lang.Object
    java.util.AbstractCollection
    java.util.AbstractList
    ArrayList
    ObservableCollection
    AxisCollection
    Inherited Members
    ObservableCollection.add(E)
    ObservableCollection.add(int,E)
    ObservableCollection.addAll(int,Collection<? extends E>)
    ObservableCollection.addAll(Collection<? extends E>)
    ObservableCollection.addObserver(ICollectionObserver<E>)
    ObservableCollection.clear()
    ObservableCollection.remove(int)
    ObservableCollection.remove(Object)
    ObservableCollection.removeAll(Collection<?>)
    ObservableCollection.removeObserver(ICollectionObserver<E>)
    ObservableCollection.removeRange(int,int)
    ObservableCollection.retainAll(Collection<?>)
    ObservableCollection.set(int,E)
    ObservableCollection.setAll(Collection<? extends E>)
    ObservableCollection.setAll(List<? extends E>,Predicate<? super E>)
    Object.finalize()
    Object.getClass()
    Object.notify()
    Object.notifyAll()
    Object.wait()
    Object.wait(long)
    Object.wait(long,int)
    AbstractCollection.containsAll(Collection<?>)
    AbstractCollection.toString()
    ArrayList.<T>toArray(T[])
    ArrayList.addFirst(E)
    ArrayList.addLast(E)
    ArrayList.clone()
    ArrayList.contains(Object)
    ArrayList.ensureCapacity(int)
    ArrayList.equals(Object)
    ArrayList.forEach(Consumer<? super E>)
    ArrayList.get(int)
    ArrayList.getFirst()
    ArrayList.getLast()
    ArrayList.hashCode()
    ArrayList.indexOf(Object)
    ArrayList.isEmpty()
    ArrayList.iterator()
    ArrayList.lastIndexOf(Object)
    ArrayList.listIterator()
    ArrayList.listIterator(int)
    ArrayList.removeFirst()
    ArrayList.removeIf(Predicate<? super E>)
    ArrayList.removeLast()
    ArrayList.replaceAll(UnaryOperator<E>)
    ArrayList.size()
    ArrayList.sort(Comparator<? super E>)
    ArrayList.spliterator()
    ArrayList.subList(int,int)
    ArrayList.toArray()
    ArrayList.trimToSize()
    Namespace:
    Assembly: .dll
    Syntax
    public class AxisCollection extends ObservableCollection<IAxis>

    Constructors

    AxisCollection()

    Initializes a new instance of AxisCollection class

    Declaration
    public AxisCollection()

    AxisCollection(Collection<? extends IAxis> collection)

    Initializes a new instance of AxisCollection class

    Declaration
    public AxisCollection(Collection<? extends IAxis> collection)
    Parameters
    Type Name Description
    Collection<? extends com.scichart.charting.visuals.axes.IAxis> collection

    The collections with items to add

    Methods

    getAxisById(String id)

    Gets the axis specified by id if it exists, otherwise returns null

    Declaration
    public IAxis getAxisById(String id)
    Parameters
    Type Name Description
    String id

    The axis id

    Returns
    Type Description
    IAxis

    The axis with specified id if it exists, otherwise returns null

    getAxisById(String id, boolean assertAxisExists)

    Gets the axis specified by id if it exists, otherwise returns null

    Declaration
    public IAxis getAxisById(String id, boolean assertAxisExists)
    Parameters
    Type Name Description
    String id

    The axis id

    boolean assertAxisExists

    If set to true assert and throw if the axis does not exist

    Returns
    Type Description
    IAxis

    The axis with specified id if it exists, otherwise returns null

    getDefault()

    Gets the default axis, which is equal to the axis with the AxisBase#DEFAULT_AXIS_ID, else null

    Declaration
    public final IAxis getDefault()
    Returns
    Type Description
    IAxis

    The default axis if it exists, otherwise returns null

    getPrimaryAxis()

    Gets the primary axis in the collection. This is the first axis that has IAxis#getIsPrimaryAxis() set to true, or null if none exists.

    Declaration
    protected final IAxis getPrimaryAxis()
    Returns
    Type Description
    IAxis

    The primary axis if it exist, otherwise returns null

    hasPrimaryAxis()

    Gets the value indicating whether this collection has primary axis

    Declaration
    protected final boolean hasPrimaryAxis()
    Returns
    Type Description
    boolean

    True if any of the Axes in the collection have IAxis#getIsPrimaryAxis() set to true

    Back to top © 2011-2025 SciChart. All rights reserved. | sitemap.xml