Discussions
Categories
Groups
Community Home
Categories
INTERNAL ENABLEMENT
POPULAR
THRUST SERVICES & TOOLS
CLOUD EDITIONS
Quick Links
MY LINKS
HELPFUL TIPS
Back to website
Home
Intelligence (Analytics)
simple Highlighting question
markcheung
How do I highlight a bar (not a series) in a bargraph?
These do not work for me:
chart.getInteractivity().setLegendBehavior(LegendBehaviorType.HIGHLIGHT_SERIE_LITERAL);
bseries.getTriggers().add(TriggerImpl.create(TriggerCondition.ONCLICK_LITERAL, ActionImpl.create(ActionType.HIGHLIGHT_LITERAL,
TooltipValueImpl.create(500, "Highlight"))));
Find more posts tagged with
Comments
markcheung
I am using markerrangeimpl to highlight:
xAxis.getMarkerRanges().clear();
xAxis.getMarkerRanges( )
.add( MarkerRangeImpl.create( xAxis,
DateTimeDataElementImpl.create( time ),
DateTimeDataElementImpl.create( time.forward(12, interval/5) ),
ColorDefinitionImpl.GREEN().translucent( ) ) );
Is there a way to remove the labels for the highlight (there is no need for it to show the range of the highlight)?