Package com.vaadin.addon.charts.model

Examples of com.vaadin.addon.charts.model.Series


        public void onPointClick(final double x, final double y,
                final int seriesIndex, final String category,
                final int pointIndex, final int absoluteX,
                final int absoluteY) {

            final Series series = getSeriesBasedOnIndex(seriesIndex);
            final PointClickEvent pointClickEvent = new PointClickEvent(
                    Chart.this, x, y, series, category, pointIndex,
                    absoluteX, absoluteY);
            fireEvent(pointClickEvent);
        }
View Full Code Here


                    absoluteX, absoluteY);
            fireEvent(pointClickEvent);
        }

        private Series getSeriesBasedOnIndex(final int seriesIndex) {
            final Series series = getConfiguration().getSeries().get(
                    seriesIndex);
            return series;
        }
View Full Code Here

TOP

Related Classes of com.vaadin.addon.charts.model.Series

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.