Tabnine Logo
LegendItemEntity
Code IndexAdd Tabnine to your IDE (free)

How to use
LegendItemEntity
in
org.jfree.chart.entity

Best Java code snippets using org.jfree.chart.entity.LegendItemEntity (Showing top 3 results out of 315)

origin: org.codehaus.jtstand/jtstand-chart

if (ebp.getGenerateEntities()) {
  EntityCollection ec = new StandardEntityCollection();
  LegendItemEntity entity = new LegendItemEntity(
      (Shape) area.clone());
  entity.setSeriesIndex(this.series);
  entity.setSeriesKey(this.seriesKey);
  entity.setDataset(this.dataset);
  entity.setToolTipText(getToolTipText());
  entity.setURLText(getURLText());
  ec.add(entity);
  r.setEntityCollection(ec);
origin: org.zkoss.zk/zkex

area.setAttribute("category", category);
area.setAttribute("value", ((PieModel)model).getValue(category));
if (chart.isShowTooltiptext() && info.getToolTipText() == null) {
  area.setTooltiptext(category.toString());
Comparable series = ((CategoryModel)model).getSeries(seq);
area.setAttribute("series", series);
if (chart.isShowTooltiptext() && info.getToolTipText() == null) {
  area.setTooltiptext(series.toString());
Comparable series = ((XYModel)model).getSeries(seq);
area.setAttribute("series", series);
if (chart.isShowTooltiptext() && info.getToolTipText() == null) {
  area.setTooltiptext(series.toString());
if (chart.isShowTooltiptext() && info.getToolTipText() == null) {
  area.setTooltiptext(series.toString());
final Comparable series = info.getSeriesKey();
area.setAttribute("series", series);
if (chart.isShowTooltiptext() && info.getToolTipText() == null) {
  area.setTooltiptext(series.toString());
origin: jfree/jfreechart

if (ebp.getGenerateEntities()) {
  EntityCollection ec = new StandardEntityCollection();
  LegendItemEntity entity = new LegendItemEntity(
      (Shape) area.clone());
  entity.setSeriesKey(this.seriesKey);
  entity.setDataset(this.dataset);
  entity.setToolTipText(getToolTipText());
  entity.setURLText(getURLText());
  ec.add(entity);
  r.setEntityCollection(ec);
org.jfree.chart.entityLegendItemEntity

Javadoc

An entity that represents an item within a legend.

Most used methods

  • <init>
    Creates a legend item entity.
  • setDataset
    Sets a reference to the dataset that this legend item is derived from.
  • setSeriesKey
    Sets the key for the series.
  • setToolTipText
  • setURLText
  • getSeriesKey
    Returns the series key that identifies the legend item.
  • getToolTipText
  • setSeriesIndex
    Sets the series index.

Popular in Java

  • Parsing JSON documents to java classes using gson
  • addToBackStack (FragmentTransaction)
  • getResourceAsStream (ClassLoader)
  • requestLocationUpdates (LocationManager)
  • HttpURLConnection (java.net)
    An URLConnection for HTTP (RFC 2616 [http://tools.ietf.org/html/rfc2616]) used to send and receive d
  • Socket (java.net)
    Provides a client-side TCP socket.
  • SortedMap (java.util)
    A map that has its keys ordered. The sorting is according to either the natural ordering of its keys
  • Vector (java.util)
    Vector is an implementation of List, backed by an array and synchronized. All optional operations in
  • Join (org.hibernate.mapping)
  • Scheduler (org.quartz)
    This is the main interface of a Quartz Scheduler. A Scheduler maintains a registry of org.quartz.Job
  • Top 12 Jupyter Notebook extensions
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now