;(function(root, factory) { if (typeof define === 'function' && define.amd) { define(['rave', 'rave-library', 'rave-utilities', 'rave-layouts', 'rave-legends'], factory); } else if (typeof exports === 'object') { module.exports = factory(require('rave'), require('rave-library'), require('rave-utilities'), require('rave-layouts'), require('rave-legends')); } else { root.raveLibraryColumn = factory(root.rave, root.raveLibrary, root.raveUtilities, root.raveLayouts, root.raveLegends); } }(this, function(rave, raveLibrary, raveUtilities, raveLayouts, raveLegends) { (function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o 1){ elementsToRemove = Array.prototype.slice.call(arguments); } { this.dataModel = this.context.dataModel(); if (!(this.dataValid())) { for (var __i_enFor0 = 0, __len_enFor0 = elementsToRemove.length; __i_enFor0 < __len_enFor0; ++__i_enFor0) { var e = elementsToRemove[__i_enFor0]; this._chart.selectAll(e).selectAll("*").remove(); } this._legends.visible(false).draw(); return false; } return true; } }, /** @expose */ dataValid : function() { return this.dataModel.validate(); }, /** @expose */ getLegendCount : function() { return 1; }, /** @expose */ isAxesManagerRequired : function() { return false; }, /** @expose */ isZoomSupported : function() { return true; }, /** @expose */ getProperty : function(s) { return this.context.getPropertyValue(s); }, /** @expose */ getPropertyDefault : function(s) { return this.context.getPropertyDefault(s); }, /** @expose */ getBooleanProperty : function(s) { var obj = this.getProperty(s); return (obj); }, /** @expose */ getDoubleProperty : function(s) { var obj = this.getProperty(s); return + (obj); }, /** @expose */ getIntProperty : function(s) { var obj = this.getProperty(s); return ~~ (obj); }, /** * @param (String) id Property ID * @return (String) Property value as a string */ /** @expose */ getStringProperty : function(id) { var obj = this.getProperty(id); return (obj == null) ? null : ""+(obj); }, /** * @param (String) id Property ID * @return (String) Property value as a string, returning null for the empty string */ /** @expose */ getStringPropertyEmptyAsNull : function(id) { var s = this.getStringProperty(id); return (s == null || s.length == 0) ? null : s; }, /** * @param (String) id Property ID * @return (Number) Property value as a string, containing size as the number of pixels */ /** @expose */ getCSSSizeToPixelNumber : function(id) { var cssSize = rave['library']['internal']['CSSConverter'].convertCSSSizeToPixelNumber(this.context.getPropertyValue(id), 100.0, 10.0); return (cssSize == null) ? 0.0 : cssSize; }, /** * Based on effect duration and effect property, determine the effect duration in ms. * @param (String) effect Effect name, one of the options available from EFFECT_OPTIONS. * @return (int) Effect duration in ms. */ /** @expose */ getEffectDuration : function(effect) { var duration = this.getIntProperty("effect.duration"); if ((duration < 0) || (effect == null) || "none" == effect) { duration = 0; } return duration; }, /** @expose */ getTopPadding : function() { return this.getProperty("layout.chart.padding.top"); }, /** @expose */ getLeftPadding : function() { return this.getProperty("layout.chart.padding.left"); }, /** @expose */ getBottomPadding : function() { return this.getProperty("layout.chart.padding.bottom"); }, /** @expose */ getRightPadding : function() { return this.getProperty("layout.chart.padding.right"); }, /** @expose */ getLayoutPadding : function() { return this.getProperty("layout.padding"); }, /** @expose */ getLegendChartGap : function() { return this.getProperty("layout.legendchart.gap"); }, /** @expose */ getLegendChartAlign : function() { return this.getBooleanProperty("layout.legendchart.align"); }, /** @expose */ getLegendPosition : function() { return this.getStringProperty("legend.position"); }, getPalette$0 : function() { return this.getPalette$1("color.palette"); }, getPalette$1 : function(paletteID) { var id = this.getStringProperty(paletteID); var colorPalette = com_ibm_rave_library_Library.palettes.getPalette(id); return (!colorPalette) ? com_ibm_rave_library_Library.palettes.getDefaultPalette() : colorPalette; }, getDynamicPalette$0 : function() { return this.getDynamicPalette$1("color.palette", "color.dynamicPalette.min", "color.dynamicPalette.mid", "color.dynamicPalette.max"); }, /** * Get a palette. If the fills array is non-null, has at least two entries, and all entries are non-null and non-"", a continuous normalized palette will be created using the fill values as stops. For example if the fills array is ["red","white","green"], the palette will have stops at 0.0 red, 0.5 white, 1.0 green. Otherwise the paletteID is looked up in Library.palettes and returned. If the paletteID is not found, the default palette is returned. * @param (String) paletteID The palette ID * @return (rave['library']['internal']['Palette']) Palette */ getDynamicPalette$1 : function(paletteID, minId, midId, maxId) { var colorPalette; var min = this.getStringProperty(minId); if (min != null) { var mid = this.getStringProperty(midId); if (mid != null) { var max = this.getStringProperty(maxId); if (max != null) { var fills = [min, mid, max]; colorPalette = rave['library']['internal']['AbstractView'].getFillPalette(fills); } } } return (!colorPalette) ? this.getPalette(paletteID) : colorPalette; }, /** @expose */ prepareLayoutComponent : function() { this._layoutComponent.setPreExecute(this.context.getPreExecute()).overall(new rave['internal']['RectStruct'](0, 0, this.context.size.w, this.context.size.h)).legendPosition(this.getLegendPosition()).padding(this.getLayoutPadding()).chartPadding(this.getTopPadding(), this.getLeftPadding(), this.getBottomPadding(), this.getRightPadding()).legendChartGap(this.getLegendChartGap()).legendChartAlign(this.getLegendChartAlign()); }, /** @expose */ prepareLayoutSizables : function(layoutComponent, useX2, useY1, useX1, useY2, useLegend) { layoutComponent.removeAxisSizables(); if (useX1) { layoutComponent.addAxisSizable(this._axes.axisComponent(0)); } if (useY1) { layoutComponent.addAxisSizable(this._axes.axisComponent(2)); } if (useX2) { layoutComponent.addAxisSizable(this._axes.axisComponent(1)); } if (useY2) { layoutComponent.addAxisSizable(this._axes.axisComponent(3)); } layoutComponent.legendSize(useLegend ? this._legends : null); }, /** @expose */ resetUpdate : function() { this.updateType = 4; }, /** @expose */ isUpdateNothing : function() { return this.updateType == 4; }, /** @expose */ isShowLegend : function() { return this.getBooleanProperty("legend.display"); }, cancelTransitions : function() { this.context.node.selectAll("*").interrupt(); }, /** @expose */ setBackgroundProperties : function(elementRect, duration) { this._backgroundComponent.setPreExecute(this.context.getPreExecute()).size(this.context.size).backgroundColor(this.getStringProperty("background.chart.color")); this.context.node.selectAll("rect.background.chart").transition().duration(duration).call(this._backgroundComponent); this._backgroundComponent.setPreExecute(this.context.getPreExecute()).rect(elementRect).backgroundColor(this.getStringProperty("background.elements.color")); this.context.node.selectAll("rect.background.elements").transition().duration(duration).call(this._backgroundComponent); }, /** @expose */ isShowDataLabels : function() { return this.getBooleanProperty("data.label.display"); }, /** @expose */ isShowDataLabelsAsPercentageOfColor : function() { var dataLabel = this.getStringProperty("data.label.type"); return "PercentOfColor" == dataLabel; }, /** @expose */ isShowDataLabelsAsPercentageOfCategory : function() { var dataLabel = this.getStringProperty("data.label.type"); return "PercentOfCategory" == dataLabel; }, /** @expose */ getlDataLabelAccessor : function(dataSet, slot, isInterval) { var labelAccessor; var labelEntry = dataSet.slot(slot).entry(); if (!labelEntry) { if (this.isShowDataLabelsAsPercentageOfCategory()) { labelAccessor = isInterval ? com_ibm_rave_bundles_components_IntervalDataUtilities.PERCENT_OF_CATEGORY_ACCESSOR : com_ibm_rave_bundles_data_PointDataUtilities.PERCENT_OF_CATEGORY_ACCESSOR; } else if (this.isShowDataLabelsAsPercentageOfColor()) { labelAccessor = isInterval ? com_ibm_rave_bundles_components_IntervalDataUtilities.PERCENT_OF_COLOR_ACCESSOR : com_ibm_rave_bundles_data_PointDataUtilities.PERCENT_OF_COLOR_ACCESSOR; } else { labelAccessor = isInterval ? com_ibm_rave_bundles_components_IntervalDataUtilities.VALUE_ACCESSOR : com_ibm_rave_bundles_data_PointDataUtilities.Y_ACCESSOR; } } else { labelAccessor = rave['library']['internal']['AbstractView'].originalDatumAccessor(rave['library']['internal']['AbstractView'].accessorOf(labelEntry)); } return labelAccessor; }, /** @expose */ getEntryForDataLabelFormatter : function(dataSet, labelSlot, defaultSlot) { var labelEntry = dataSet.slot(labelSlot).entry(); return labelEntry ? labelEntry : dataSet.slot(defaultSlot).entry(); }, /** @expose */ getBackgroundConstrastLabelStyle : function() { var labelFontStyle = com_ibm_rave_bundles_utilities_FontPropertyParser.parseCSSFont(this.getStringProperty("labelstyle.font")); if (this.getBooleanProperty("contrast.label.color") == false) { return labelFontStyle; } var defaultFillColor; if (labelFontStyle) { defaultFillColor = labelFontStyle["fill"]; if (defaultFillColor == null) { defaultFillColor = labelFontStyle["color"]; } } else { labelFontStyle = {}; } if (defaultFillColor == null) { defaultFillColor = "#000000"; } labelFontStyle["fill"] = com_ibm_rave_bundles_utilities_ColorUtil.getContrastColor(this.getStringProperty("background.elements.color"), defaultFillColor); return labelFontStyle; }, /** @expose */ getPalette : function(a0) { var args = arguments; if (args.length == 0) { return this.getPalette$0(); } if (args.length == 1 && (a0 == null || typeof a0 === "string")) { return this.getPalette$1(a0); } return rave['library']['internal']['AbstractView'].prototype.getPalette.apply(this, args); }, /** @expose */ getDynamicPalette : function(a0, a1, a2, a3) { var args = arguments; if (args.length == 0) { return this.getDynamicPalette$0(); } return this.getDynamicPalette$1(a0, a1, a2, a3); } }); // $source: com/ibm/rave/bundles/components/BundleComponentImpl /************************************************************************ ** IBM Confidential ** ** IBM Business Analytics: Rapidly Adaptive Visualization Engine ** ** (C) Copyright IBM Corp. 2017 ** ** The source code for this program is not published or otherwise divested of its trade secrets, ** irrespective of what has been deposited with the U.S. Copyright Office. ************************************************************************/ // GENERATED var com_ibm_rave_bundles_components_BundleComponentImpl = rave['internal']['Declare']({ /** * The pre-execution callback. */ //_preExecuteCallback : null, /** * The render callback. */ /** @expose */ _renderCallback : null, _$functionClassMethod : function() { var _$self = function(args) { if (args !== null || arguments.length > 1){ args = Array.prototype.slice.call(arguments, 0); } { var self = _$self; this.each(function(data, index, groupIndex) { self.execute(rave.select(this)); }); return null; } }; return _$self; }, /** * Execute the component logic. In general, the execute function will append, modify, and/or remove items contained in the provided selector (g). There are no set rules regarding what the execute function can or can not do. However, it is extremely bad form if a component modifies and/or removes items created by another component. * @param (rave['internal']['Selector']) g node that this component will be applied to. */ /** @expose */ execute : function(g) {}, /** * Set the pre-execute callback for this component. * @param (rave['library']['internal']['ComponentCallback']) callback The callback */ /** @expose */ setPreExecute : function(callback) { this._preExecuteCallback = callback; return this; }, /** * If the pre-execute component is non-null, call it with this object. Note that this object must also implement BundleComponent. */ /** @expose */ preExecute : function() { if (this._preExecuteCallback) { this._preExecuteCallback(this); } }, /** * Set the render callback for this component. * @param (rave['internal']['RunFunction']) callback The callback */ /** @expose */ setRenderCallback : function(callback) { this._renderCallback = callback; return this; }, /** * Abstract method for Swift translation purposes. Swift does not support abstract classes, so translator generates a non-abstract class. By adding the following 'abstract' method, Swift class will satisfy interface requirements. */ /** @expose */ type : function() {}, /** @expose */ updateBorder : function(s, borderWidth, borderColor) { if (borderWidth != null) { s.each(function(data, index, groupIndex) { if (!((this.rave_getProperty("selected"))) && !((this.rave_getProperty("highlighted")))) { this.rave_setStyle("stroke-width", borderWidth, ""); } }); } if (borderColor != null) { s.each(function(data, index, groupIndex) { if (!((this.rave_getProperty("selected"))) && !((this.rave_getProperty("highlighted")))) { this.rave_setStyle("stroke", borderColor, ""); } }); } }, /** @expose */ getDefaultLabelColor : function(_labelStyle) { if (!_labelStyle) { return "#000000"; } var defaultFillColor; if (_labelStyle) { defaultFillColor = _labelStyle["fill"]; if (defaultFillColor == null) { defaultFillColor = _labelStyle["color"]; } } if (defaultFillColor == null) { defaultFillColor = "#000000"; } return defaultFillColor.toString(); } }); // $source: com/ibm/rave/bundles/component/BackgroundComponent /************************************************************************ ** IBM Confidential ** ** IBM Business Analytics: Rapidly Adaptive Visualization Engine ** ** (C) Copyright IBM Corp. 2017 ** ** The source code for this program is not published or otherwise divested of its trade secrets, ** irrespective of what has been deposited with the U.S. Copyright Office. ************************************************************************/ // GENERATED /** *

A component that renders the background to the chart. The {@link #this.type()} method returns "BackgroundComponent".

*/ var com_ibm_rave_bundles_component_BackgroundComponent = rave['internal']['Declare'].implement( /** * Get the background color. * @return (String) The background color */ //backgroundColor : function() {}, /** * Set the background color. If the color is null, white is used. * @param (String) backgroundColor The new background color * @return (com.ibm.rave.bundles.component.BackgroundComponent) This object */ //backgroundColor : function(backgroundColor) {} ); /** * The string returned by {@link #this.type()} is "BackgroundComponent". */ /** @expose */ com_ibm_rave_bundles_component_BackgroundComponent.COMPONENT_TYPE = "BackgroundComponent"; // $source: com/ibm/rave/bundles/component/ChartLayoutComponent /************************************************************************ ** IBM Confidential ** ** IBM Business Analytics: Rapidly Adaptive Visualization Engine ** ** (C) Copyright IBM Corp. 2017 ** ** The source code for this program is not published or otherwise divested of its trade secrets, ** irrespective of what has been deposited with the U.S. Copyright Office. ************************************************************************/ // GENERATED /** *

A component that does the layout for a bundle chart. The {@link #this.type()} method returned "ChartLayoutComponent".

Layout Properties

Chart layout is controlled by the following properties:

*/ var com_ibm_rave_bundles_component_ChartLayoutComponent = rave['internal']['Declare'].implement( //padding : function() {}, //topPadding : function() {}, //leftPadding : function() {}, //bottomPadding : function() {}, //rightPadding : function() {}, //legendChartAlign : function() {}, //legendPosition : function() {}, //legendChartGap : function() {}, //legendPosition : function(position) {}, //topPadding : function(value) {}, //leftPadding : function(value) {}, //bottomPadding : function(value) {}, //rightPadding : function(value) {}, /** * Sets the padding around the outside of the chart/legend. * @param (Object) value a string containing up to 4 CSS sizes for left, top, right, bottom padding (eg. "padding-left:10px;padding-top:10%"). Null is treated as 0. * @return (com.ibm.rave.bundles.component.ChartLayoutComponent) This object */ //padding : function(value) {}, /** * Sets all chart paddings. Null values are treated as 0. * @param (Object) top New top padding * @param (Object) left New left padding * @param (Object) bottom New bottom padding * @param (Object) right New right padding * @return (com.ibm.rave.bundles.component.ChartLayoutComponent) This object * @deprecated Please use {@link #this.padding(Object)} and {@link #this.legendChartGap(Object)} */ //chartPadding : function(top, left, bottom, right) {}, /** * Sets whether the legend should align with the chart "body". * @param (boolean) legendChartAlign the boolean state * @return (com.ibm.rave.bundles.component.ChartLayoutComponent) This object */ //legendChartAlign : function(legendChartAlign) {}, /** * Set the space for the gap between chart and legend * @param (Object) value the gap distance (css length) * @return (com.ibm.rave.bundles.component.ChartLayoutComponent) This object */ //legendChartGap : function(value) {}, /** * Set the size information for the legend. Null value is treated as no visible legend. * @param (com.ibm.rave.bundles.component.ChartLayoutSizable) sizable An object that implements the ChartLayoutSizable interface * @return (com.ibm.rave.bundles.component.ChartLayoutComponent) This object */ //legendSize : function(sizable) {}, /** * Reset list of axis sizables to 0 * @return (com.ibm.rave.bundles.component.ChartLayoutComponent) This object */ //removeAxisSizables : function() {}, /** * Add an axis to be considered in layout operation. * @param (com.ibm.rave.bundles.component.ChartLayoutSizable) sizable An object that implements the ChartLayoutSizable interface * @return (com.ibm.rave.bundles.component.ChartLayoutComponent) This object */ //addAxisSizable : function(sizable) {} ); /** * The string returned by {@link #this.type()} is "ChartLayoutComponent". */ /** @expose */ com_ibm_rave_bundles_component_ChartLayoutComponent.COMPONENT_TYPE = "ChartLayoutComponent"; // $source: com/ibm/rave/bundles/components/LegendsManager /************************************************************************ ** IBM Confidential ** ** IBM Business Analytics: Rapidly Adaptive Visualization Engine ** ** (C) Copyright IBM Corp. 2017 ** ** The source code for this program is not published or otherwise divested of its trade secrets, ** irrespective of what has been deposited with the U.S. Copyright Office. ************************************************************************/ // GENERATED //@import com/ibm/rave/bundles/components/LegendComponentImpl (runtime) // new, orientationOf /** *

Manages one or more legend components for a bundle. The number of legends N is fixed and declared in the constructor, and legends are identified by an array index number between 0 and N-1. (For now we don't need a dynamic collection, especially since we're generating the chart structure statically and each legend gets its own <g&;gt; node. If a chart sometimes needs one legend and sometimes two, it will create two nodes and construct the manager for two legends.)

The manager has the following properties:

Each legend has the following properties:

The general pattern of use is to create the LegendsManager in the view's constructor or setup method, allocating the maximum number of legends that will ever be needed. The chart structure will have corresponding <g> nodes, and in the view's draw method all the legend selectors are set to the corresponding group. The legend palettes, titles, and formatters will usually be set next, making sure to set the palettes of any unused legends to null, and {@link #this.anyVisible()} used to find if any rectangles need to be drawn so the overall chart may be laid out. The rectangle, orientation, and transition information can then be set and {@link #this.draw()} called.

The visible legends (those with palettes) divide the rectangle equally along the orientation. For example if there are three legends in horizontal orientation and two are visible, they will split the rectangle vertically in half. Legends are drawn left-to-right for horizontal orientation, and top-to-bottom for vertical orientation, in index order.

If a transition is requested and the duration is non-negative, a transition is created from the legend's selector; otherwise the selector is used. However, in order to give a somewhat better appearance, a transition is not used if the legend was not visible (no shapes rendered) the last time it was drawn.

*/ var com_ibm_rave_bundles_components_LegendsManager = rave['internal']['Declare']({ /** * Bundle context */ //_context : null, /** * Component used to draw all legends */ //_comp : null, /** * Global visibility; if false no legends are drawn */ //_visible : null, /** * Rectangle containing all legends */ //_rectangle : null, /** * Legend orientation */ //_orient : null, /** * Pre-execute component callback */ //_preExecute : null, /** * Selectors for each legend */ //_selectors : null, /** * Palettes for each legend */ //_palettes : null, /** * Scale size functions for each legend */ //_scale : null, /** * Swatch size functions for each legend */ //_swatchSizes : null, /** * Shapes for each legend */ //_shapes : null, /** * Titles for each legend */ //_titles : null, /** * Title fonts for each legend */ //_titleFonts : null, /** * Title fills for each legend */ //_titleFills : null, /** * Title font sizes for each legend */ //_titleFontSizes : null, /** * Title font families for each legend */ //_titleFontFamilies : null, /** * Entry fonts for each legend */ //_entryFonts : null, /** * Custom formatters for each legend, created from the registered custom formatters */ //_formatters : null, /** * Whether each legend was visible in the last draw */ //_lastVisible : null, //_dataSlotEntries : null, /** * Number of legends */ _numLegends : 0, /** * Whether to use a transition. */ _doTransition : false, /** * Duration of the transition. */ _duration : 0, _spaceUsed : 0, /** * Construct the manager. * @param (int) numLegends Number of legends, must be positive */ /** @expose */ constructor : function(context, numLegends) { this._context = context; this._numLegends = numLegends; this._comp = new com_ibm_rave_bundles_components_LegendComponentImpl(); this._rectangle = new rave['internal']['RectStruct'](0, 0, 0, 0); this._orient = "vertical"; this._preExecute = null; this._selectors = []; this._palettes = []; this._scale = []; this._swatchSizes = []; this._shapes = []; this._titles = []; this._titleFonts = []; this._titleFills = []; this._titleFontSizes = []; this._titleFontFamilies = []; this._entryFonts = []; this._formatters = []; this._lastVisible = []; this._visible = []; this._dataSlotEntries = []; for (var i = 0; i < this._numLegends; ++i) { this._selectors[i] = null; this._palettes[i] = null; this._swatchSizes[i] = null; this._shapes[i] = null; this._titles[i] = null; this._formatters[i] = null; this._lastVisible[i] = false; this._visible[i] = true; } }, /** * @return (com.ibm.rave.bundles.components.LegendComponentImpl) The legend component used by this manager; for unit tests */ getLegendComponent : function() { return this._comp; }, /** * Set a specific legend visible * @param (int) legendIndex The index of the legend * @param (boolean) visible New value of visible flag * @return (com.ibm.rave.bundles.components.LegendsManager) This object */ visible$0 : function(legendIndex, visible) { if (legendIndex < this._visible.length) { this._visible[legendIndex] = visible; } return this; }, /** * Set all legend visible * @param (boolean) visible New value of visible flag * @return (com.ibm.rave.bundles.components.LegendsManager) This object */ visible$1 : function(visible) { for (var i = 0; i < this._visible.length; ++i) { this._visible[i] = visible; } return this; }, /** * Set the layout rectangle. The rectangle is copied. If it is null, the layout rectangle is unchanged. * @param (rave['internal']['RectStruct']) rect New layout rectangle * @return (com.ibm.rave.bundles.components.LegendsManager) This object */ /** @expose */ rectangle : function(rect) { if (rect) { this._rectangle = new rave['internal']['RectStruct'](rect.x, rect.y, rect.width, rect.height); } return this; }, /** * Set the orient property. If the argument is not "horizontal" or "vertical", the orient property is not changed. * @param (String) orient New orient * @return (com.ibm.rave.bundles.components.LegendsManager) This object */ /** @expose */ orient : function(orient) { if ("horizontal" == orient || "vertical" == orient) { this._orient = orient; } return this; }, /** * Set the orient property from a legend position. If the argument is "top" or "bottom", the orient is set to "horizontal". Otherwise it is set to "vertical". * @param (String) position Legend position * @return (com.ibm.rave.bundles.components.LegendsManager) This object */ /** @expose */ position : function(position) { return this.orient(com_ibm_rave_bundles_components_LegendComponentImpl.orientationOf(position)); }, /** * Set the transition information. If the duration is negative, 0 is used. * @param (boolean) doTransition Whether to do a transition * @param (int) duration Duration of the transition when used * @return (com.ibm.rave.bundles.components.LegendsManager) This object */ /** @expose */ transition : function(doTransition, duration) { this._doTransition = doTransition; this._duration = (duration >= 0) ? duration : 0; return this; }, /** * Set the pre-execute callback for all legends. The callback may be null. * @param (rave['library']['internal']['ComponentCallback']) callback The callback * @return (com.ibm.rave.bundles.components.LegendsManager) This object */ /** @expose */ setPreExecute : function(callback) { this._preExecute = callback; return this; }, /** * Set the selector to be used when rendering a legend. If the index is out of range no selectors change. * @param (int) index Legend array index * @param (rave['internal']['Selector']) selector Selector, may be null (but this is not advisable) * @return (com.ibm.rave.bundles.components.LegendsManager) This object */ /** @expose */ selector : function(index, selector) { if (index >= 0 && index < this._numLegends) { this._selectors[index] = selector; } return this; }, /** * Set the palette of a legend. If the index is out of range no information is changed. * @param (int) index Legend array index * @param (rave['library']['internal']['Palette']) palette Palette, may be null * @return (com.ibm.rave.bundles.components.LegendsManager) This object */ /** @expose */ palette : function(index, palette) { if (index >= 0 && index < this._numLegends) { this._palettes[index] = palette; } return this; }, /** * Set the shape of a legend. If the index is out of range no information is changed. * @param (int) index Legend array index * @param (String) shape Shape, may be null (defaulting to square) * @return (com.ibm.rave.bundles.components.LegendsManager) This object */ /** @expose */ shape : function(index, shape) { if (index >= 0 && index < this._numLegends) { this._shapes[index] = shape; } return this; }, /** * Set the title of a legend. If the index is out of range no information is changed. * @param (int) index Legend array index * @param (String) title Title, may be null * @return (com.ibm.rave.bundles.components.LegendsManager) This object */ /** @expose */ title : function(index, title) { if (index >= 0 && index < this._numLegends) { this._titles[index] = title; } return this; }, /** * Set the title font style of a legend. If the index is out of range no information is changed. * @param (int) index Legend array index * @param (String) titleFont Title font string, may be null * @return (com.ibm.rave.bundles.components.LegendsManager) This object */ /** @expose */ titleFont : function(index, titleFont) { if (index >= 0 && index < this._numLegends) { this._titleFonts[index] = titleFont; } return this; }, /** * Set the entry font style of a legend. If the index is out of range no information is changed. * @param (int) index Legend array index * @param (String) entryFont Entry font string, may be null * @return (com.ibm.rave.bundles.components.LegendsManager) This object */ /** @expose */ entryFont : function(index, entryFont) { if (index >= 0 && index < this._numLegends) { this._entryFonts[index] = entryFont; } return this; }, /** * Set the title fill of a legend. If the index is out of range no information is changed. * @param (int) index Legend array index * @param (String) titleFill Fill color string, may be null * @return (com.ibm.rave.bundles.components.LegendsManager) This object */ /** @expose */ titleFill : function(index, titleFill) { if (index >= 0 && index < this._numLegends) { this._titleFills[index] = titleFill; } return this; }, /** * Set the title font size of a legend. If the index is out of range no information is changed. * @param (int) index Legend array index * @param (String) titleFontSize Font size string, may be null * @return (com.ibm.rave.bundles.components.LegendsManager) This object */ /** @expose */ titleFontSize : function(index, titleFontSize) { if (index >= 0 && index < this._numLegends) { this._titleFontSizes[index] = titleFontSize; } return this; }, /** * Set the title font family of a legend. If the index is out of range no information is changed. * @param (int) index Legend array index * @param (String) titleFontFamily Font family string, may be null * @return (com.ibm.rave.bundles.components.LegendsManager) This object */ /** @expose */ titleFontFamily : function(index, titleFontFamily) { if (index >= 0 && index < this._numLegends) { this._titleFontFamilies[index] = titleFontFamily; } return this; }, /** * Set the scale of a legend. If the index is out of range no information is changed. * @param (int) index Legend array index * @param (rave['internal']['AbstractScale']) scale Scale, may be null * @return (com.ibm.rave.bundles.components.LegendsManager) This object */ /** @expose */ scale : function(index, scale) { if (index >= 0 && index < this._numLegends) { this._scale[index] = scale; } return this; }, /** * Set the swatch size function of a legend. If the index is out of range no information is changed. * @param (int) index Legend array index * @param (rave['internal']['ValueFunction']) swatchSize Swatch size function, may be null * @return (com.ibm.rave.bundles.components.LegendsManager) This object */ /** @expose */ swatchSize : function(index, swatchSize) { if (index >= 0 && index < this._numLegends) { this._swatchSizes[index] = swatchSize; } return this; }, /** * Set the formatter for a legend. If the index is out of range no information is changed. The custom formatter is found using {@link this.BundleContext#this.getCustomFormatterWithFlag(, rave['library']['internal']['CustomFormatInfo'], rave['internal']['ValueFunction'], )} , searching for formatters in the order LEGEND and ALL, and using the given ValueFunction as the default if none are provided. The returned value function is set as the legend's formatter. * @param (int) index Legend array index * @param (Array) entries List of data slot entries, if null an empty list is used * @param (String) format One of {@link this.CustomFormatInfo#"none"} or {@link this.CustomFormatInfo#"percent"} * @param (rave['internal']['ValueFunction']) defaultFunction Default function to use if no custom formatter is defined, may be null * @return (com.ibm.rave.bundles.components.LegendsManager) This object */ /** @expose */ formatterList : function(index, entries, format, defaultFunction) { if (index >= 0 && index < this._numLegends) { this._formatters[index] = this._context.getCustomFormatterWithFlag(["legend", "all"], rave['library']['internal']['BundleContext'].makeCustomFormatInfo("legend-label", "ROLE_NONE", format, entries), defaultFunction, false); } return this; }, /** * Utility for the common case where there is only one data slot entry, using no special format or default function. Makes a list with the entry and calls {@link #this.formatterList(, Array, String, rave['internal']['ValueFunction'])} with FORMAT_NONE and a null default function. * @param (int) index Legend array index * @param (rave['library']['internal']['DataSlotEntry']) entry Data slot entry, if null it is not added to the list * @return (com.ibm.rave.bundles.components.LegendsManager) This object */ /** @expose */ formatter : function(index, entry) { var entries = []; if (entry) { entries.push(entry); } return this.formatterList(index, entries, "none", null); }, /** * Test if any legends are visible. The global visible flag must be true, and at least one legend must have a palette. This is intended to help with layout of the whole chart; first set all the legend properties, then allocate space if any are visible. * @return (boolean) Whether any legend are visible (will be drawn) */ /** @expose */ anyVisible : function() { for (var i = 0; i < this._numLegends; ++i) { if (this._visible[i] == true && (this._palettes[i] || this._swatchSizes[i])) { return true; } } return false; }, /** * Supply a data slot entry to be associated with the specified legend index. Note this method will call {@link #this.formatter(, rave['library']['internal']['DataSlotEntry'])} , which will handle a default formatter. For more info, see {@link #this.formatterList(, Array, String, rave['internal']['ValueFunction'])} . * @param (int) index Legend array index * @param (rave['library']['internal']['DataSlotEntry']) entry Data slot entry, if null it is not added to the list * @return (com.ibm.rave.bundles.components.LegendsManager) This LegendsManager */ /** @expose */ setDataSlot : function(index, entry) { if (index >= 0 && index < this._numLegends) { this._dataSlotEntries[index] = entry; } return this.formatter(index, entry); }, preLayout$0 : function(layoutComponent) { this.preLayout$1(layoutComponent, true); return this; }, preLayout$1 : function(layoutComponent, axesBeforeLegend) { var layoutTransition = this._doTransition; var layoutDuration = this._duration; this._doTransition = false; this._duration = 0; var children = []; for (var i = 0; i < this._numLegends; ++i) { children[i] = "g.layoutLegend-" + i; } rave['library']['internal']['AbstractView'].createGroupStructure(this._context.node.select("g.legends-layout"), children); var layoutSelectors = []; var layoutLastVisible = []; for (var i = 0; i < this._numLegends; ++i) { layoutSelectors[i] = this._selectors[i]; layoutLastVisible[i] = this._lastVisible[i]; this._lastVisible[i] = false; if (this._selectors[i]) { this._selectors[i] = this._context.node.select("g.layoutLegend-" + i); } } layoutComponent.preLayout(true, !axesBeforeLegend); this.rectangle(layoutComponent.legendRect()); this.draw(); this._doTransition = layoutTransition; this._duration = layoutDuration; this._context.node.select("g.legends-layout").selectAll("*").remove(); for (var i = 0; i < this._numLegends; ++i) { this._lastVisible[i] = layoutLastVisible[i]; this._selectors[i] = layoutSelectors[i]; } return this; }, /** * Render the legends using the current global and per-legend settings. * @return (com.ibm.rave.bundles.components.LegendsManager) This object */ /** @expose */ draw : function() { var nVisible = 0; for (var i = 0; i < this._numLegends; ++i) { if ((this._swatchSizes[i] || this._palettes[i]) && this._visible[i]) { nVisible++; } } var x = this._rectangle.x; var y = this._rectangle.y; var dx; var dy; var size; if (nVisible == 0) { dx = 0; dy = 0; size = [this._rectangle.width, this._rectangle.height]; } else if ("horizontal" == this._orient) { dx = this._rectangle.width / nVisible; dy = 0; size = [dx, this._rectangle.height]; } else { dx = 0; dy = this._rectangle.height / nVisible; size = [this._rectangle.width, dy]; } this._comp.orient(this._orient).size(size); this._spaceUsed = 0; for (var i = 0; i < this._numLegends; ++i) { if (this._selectors[i]) { var visible = this._visible[i] && (this._palettes[i] || this._swatchSizes[i]); this._comp.visible(visible).colorPalette(this._palettes[i]).orient(this._orient).setPreExecute(this._preExecute).shape(this._shapes[i] != null ? this._shapes[i] : "square").title(this._titles[i]).titleFill(this._titleFills[i]).titleFontSize(this._titleFontSizes[i]).titleFontFamily(this._titleFontFamilies[i]).labelFormat(this._formatters[i]).swatchSize(this._swatchSizes[i]).scale(this._scale[i]); var fontStyle = this._context.getPropertyValue("legend.titlestyle.font"); if (this._titleFonts[i] != null && !(this._titleFonts[i] == "")) { this._comp.titleFont(this._titleFonts[i]); } else if (fontStyle != null && !(fontStyle == "")) { this._comp.titleFont(this._context.getPropertyValue("legend.titlestyle.font")); } fontStyle = this._context.getPropertyValue("legend.entrystyle.font"); if (this._entryFonts[i] != null) { this._comp.entryFont(this._entryFonts[i]); } else if (fontStyle != null && !(fontStyle == "")) { this._comp.entryFont(this._context.getPropertyValue("legend.entrystyle.font")); } var s = (this._doTransition && this._lastVisible[i]) ? this._selectors[i].transition("transition").duration(this._duration) : this._selectors[i]; s.attr("transform", "translate(" + x + "," + y + ")").call(this._comp); var dataSlotEntries = []; if (this._dataSlotEntries[i]) { dataSlotEntries.push(this._dataSlotEntries[i]); } this._selectors[i].selectAll(".legendTitle").property("dataSlots", dataSlotEntries); if (visible) { x += dx; y += dy; if (this._comp.getSpaceUsed() > this._spaceUsed) { this._spaceUsed = this._comp.getSpaceUsed(); } } this._lastVisible[i] = visible; } else { this._lastVisible[i] = false; } } return this; }, /** @expose */ getSizableType : function() { return 2; }, /** @expose */ getSizableOrientation : function() { return this._orient; }, /** @expose */ getPreferredSize : function() { return this._spaceUsed; }, /** @expose */ getSpillOverSize : function() { return 0; }, /** @expose */ visible : function(a0, a1) { var args = arguments; if (args.length == 1) { return this.visible$1(a0); } return this.visible$0(a0, a1); }, /** @expose */ preLayout : function(a0, a1) { var args = arguments; if (args.length == 1) { return this.preLayout$0(a0); } return this.preLayout$1(a0, a1); } }); // $source: com/ibm/rave/bundles/utilities/FontPropertyParser /************************************************************************ ** IBM Confidential ** ** IBM Business Analytics: Rapidly Adaptive Visualization Engine ** ** (C) Copyright IBM Corp. 2017 ** ** The source code for this program is not published or otherwise divested of its trade secrets, ** irrespective of what has been deposited with the U.S. Copyright Office. ************************************************************************/ // GENERATED var com_ibm_rave_bundles_utilities_FontPropertyParser = rave['internal']['Declare']({ }); /** * Method to parse the css font styles and return a style map. * @param (String) fontStyle CSS string (eg. "font-family: courier; font-size: 22; fill: red") * @return (Object) Font Style Map */ /** @expose */ com_ibm_rave_bundles_utilities_FontPropertyParser.parseCSSFont = function(fontStyle) { if (fontStyle != null && fontStyle.length > 0) { var properties = fontStyle.split(new RegExp(";")); var fontStyles = {}; for (var __i_enFor0 = 0, __len_enFor0 = properties.length; __i_enFor0 < __len_enFor0; ++__i_enFor0) { var property = properties[__i_enFor0]; var fontMap = property.split(new RegExp(":")); if (fontMap.length == 2) { var key = fontMap[0].trim(); fontStyles[key == "color" ? "fill" : key] = fontMap[1].trim(); } } return fontStyles; } return null; }; // $source: com/ibm/rave/bundles/components/AxesManager /************************************************************************ ** IBM Confidential ** ** IBM Business Analytics: Rapidly Adaptive Visualization Engine ** ** (C) Copyright IBM Corp. 2018 ** ** The source code for this program is not published or otherwise divested of its trade secrets, ** irrespective of what has been deposited with the U.S. Copyright Office. ************************************************************************/ // GENERATED //@import com/ibm/rave/bundles/components/AxisComponentImpl (runtime) // new, getTranslation //@import com/ibm/rave/bundles/components/GridComponentImpl (runtime) // new //@import com/ibm/rave/bundles/components/ClipPathComponentImpl (runtime) // new /** *

Managers the axes and gridlines for a bundle. The manager handles rectangular axes, where the axes are drawn to the top, bottom, left, and/or right of a central chart. The manager does not do the layout of axes or the setup of scales. Bundle views will normally create an instance in the setup method, then set properties in their draw method and call {@link #this.draw()} to render all the axes and gridlines (including setting the transforms and clip paths on the groups).

The manager has four axes and four gridlines, identified by the logical roles X1, X2, Y1, Y2. These corresponding to the constants in the {@link (com.ibm.rave.bundles.component.AxisComponent) AxisComponent} API. The X roles are the independent axes and the Y roles are the dependent axes. The manager will create an instance of the {@link (com.ibm.rave.bundles.components.AxisComponentImpl) AxisComponentImpl} or {@link (com.ibm.rave.bundles.components.GridComponentImpl) GridComponentImpl} for each role as it is required.

The manager has four group (<g>) selectors for axes and four for gridlines, identified by their geometric positions top, bottom, left, and right. In bundles the group structure is created when the bundle first runs, so these selectors can in theory be set just once.

Note that the axes and grids are identified logically, while the groups are identified geometrically. By default X1 is the bottom group, X2 the top, Y1 the left, and Y2 the right. This association is controlled by properties which transpose and/or flip the assignments. This is in part a RAVE/D3 requirement, since the core Axis examines the shapes in the group to generate transitions.

The group selectors should be ordinary selectors. If a transition is requested and the transition duration is non-negative, the manager creates transitions from the selectors. However in order to give a somewhat better appearance, the manager keeps track of whether shapes were drawn into the group on the previous execution, and a transition is not used if the group was not used.

Properties

The manager has the following overall properties:

The manager has the following per-role (X1, X2, Y1, Y2) properties:

The manager has the following per-position (bottom, top, left, right) properties:

  • A group (<g> node) selector for the axis. If null, neither the axis nor the corresponding grid are drawn.
  • The bounds rectangle for the axis.
  • A group (<g> node) selector for the grid. If null, the corresponding grid is not drawn.
  • Components

    An {@link (com.ibm.rave.bundles.components.AxisComponentImpl) AxisComponentImpl} and {@link (com.ibm.rave.bundles.components.GridComponentImpl) GridComponentImpl} can be obtained for each role. These instances are created on demand, usually when a view requests the instance, but also if the manager is drawing and detects that the instance is needed. Once created the instance will be used by the manager thereafter.

    Views should use these instances to configure the appearance properties of the axes and grids.

    All other properties (such as scale, bounds, orient, role, and pre-execution callback) are set by the AxesManager. Views can set these properties but the manager's {@link #this.draw()} method will change the settings. Values for some of these properties (e.g. scale and bounds) are set in the manager by the view, and the others are found automatically by the manager.

    */ var com_ibm_rave_bundles_components_AxesManager = rave['internal']['Declare']({ /** * Bundle context */ //_context : null, /** * Selector for the bundle defs node. If null, no clip paths will be defined. */ //_defs : null, /** * Scales for the axes, indexed by X1, X2, Y1, Y2 */ //_scales : null, /** * Whether to suppress labels when panning, indexed by X1, X2, Y1, Y2. */ //_suppressPanLabels : null, /** * Value of the axis drawAxisLabels, set when axis is drawn, indexed by X1, X2, Y1, Y2. */ //_drawAxisLabels : null, /** * Axis components created on demand, indexed by X1, X2, Y1, Y2 */ //_axisComponents : null, /** * When last drawn, the selector used for each axis role, indexed by X1, X2, Y1, Y2; used for redraws. */ //_lastAxisDrawSelectors : null, /** * Grid components created on demand, indexed by X1, X2, Y1, Y2 */ //_gridComponents : null, /** * When last drawn, the selector used for each grid role, indexed by X1, X2, Y1, Y2; used for redraws. */ //_lastGridDrawSelectors : null, /** * For clearing axis */ //_clearAxis : null, /** * For clearing grid */ //_clearGrid : null, /** * Selectors for the axis groups, indexed by TOP, BOTTOM, LEFT, RIGHT. */ //_axisSelectors : null, /** * Selectors for the grid groups, indexed by TOP, BOTTOM, LEFT, RIGHT. */ //_gridSelectors : null, /** * Bounding rectangles for the axis groups, indexed by TOP, BOTTOM, LEFT, RIGHT. */ //_axisRects : null, /** * Center elements bounds, also the grid bounds. */ //_elementRect : null, /** * Whether anything was drawn into the axis group last time, indexed by TOP, BOTTOM, LEFT, RIGHT. */ //_lastAxisDrew : null, /** * Whether anything was drawn into the grid group last time, indexed by TOP, BOTTOM, LEFT, RIGHT. */ //_lastGridDrew : null, //_dataSlotEntries : null, //_layoutAxisOrder : null, /** * On the first draw, no transitions are used. */ _firstDraw : false, /** * Whether to draw the axes and grids. */ _visible : true, /** * Transition duration, ms */ _duration : 0, /** * Transpose the axes (assign X to left/right and Y to top/bottom) */ _transpose : false, /** * Switch the independent (X) axes, drawing X1 where X2 normally goes and vice-versa */ _swapX : false, /** * Switch the dependent (Y) axes, drawing Y1 where Y2 normally goes and vice-versa */ _swapY : false, _layoutInProgress : false, _layoutMaxWidth : 0, _layoutMaxHeight : 0, _xPadding : 0, _xOuterPadding : 0, _yPadding : 0, _yOuterPadding : 0, _xPixelPad : 0, _yPixelPad : 0, /** * Hack to allow heatmap in "unit cell" mode to disable stagger because of the post scaling that messes up axis layout */ _preventStaggerRotate45 : false, constructor : function(context) { this._scales = []; this._suppressPanLabels = []; this._drawAxisLabels = []; this._axisComponents = []; this._lastAxisDrawSelectors = []; this._gridComponents = []; this._lastGridDrawSelectors = []; this._clearAxis = new com_ibm_rave_bundles_components_AxisComponentImpl(); this._clearGrid = new com_ibm_rave_bundles_components_GridComponentImpl(); this._axisSelectors = []; this._gridSelectors = []; this._axisRects = []; this._elementRect = new rave['internal']['RectStruct'](0, 0, 0, 0); this._lastAxisDrew = []; this._lastGridDrew = []; this._dataSlotEntries = []; this._layoutAxisOrder = []; /** * Construct and initialize. No axis scales or selector groups are defined. * @param (rave['library']['internal']['BundleContext']) context The bundle context */ { this._context = context; for (var i = 0; i < 4; ++i) { this._scales[i] = null; this._suppressPanLabels[i] = false; this._axisComponents[i] = null; this._lastAxisDrawSelectors[i] = null; this._gridComponents[i] = null; this._lastGridDrawSelectors[i] = null; this._axisSelectors[i] = null; this._gridSelectors[i] = null; this._axisRects[i] = new rave['internal']['RectStruct'](0, 0, 0, 0); this._lastAxisDrew[i] = false; this._lastGridDrew[i] = false; this._dataSlotEntries[i] = []; } } }, /** @expose */ preLayout : function(layoutComponent, axesBeforeLegend, xPadding, xOuterPadding, xPixelPad, yPadding, yOuterPadding, yPixelPad) { this._xPadding = xPadding; this._xOuterPadding = xOuterPadding; this._xPixelPad = xPixelPad; this._yPadding = yPadding; this._yOuterPadding = yOuterPadding; this._yPixelPad = yPixelPad; this._layoutInProgress = true; var layoutDuration = this._duration; this._duration = 0; var children = ["g.layoutAxis-bottom", "g.layoutAxis-top", "g.layoutAxis-left", "g.layoutAxis-right", "g.layoutGrid-bottom", "g.layoutGrid-top", "g.layoutGrid-left", "g.layoutGrid-right"]; rave['library']['internal']['AbstractView'].createGroupStructure(this._context.node.select("g.axes-layout"), children); var layoutAxisSelectors = []; var layoutGridSelectors = []; var layoutLastAxisDrew = []; for (var position = 0; position < 4; ++position) { if (this._axisComponents[position]) { this._axisComponents[position].preLayout(); } layoutAxisSelectors[position] = this._axisSelectors[position]; layoutGridSelectors[position] = this._gridSelectors[position]; layoutLastAxisDrew[position] = this._lastAxisDrew[position]; if (this._axisSelectors[position]) { this.axisSelector(position, this._context.node.select("g.layoutAxis-" + com_ibm_rave_bundles_components_AxesManager.ORIENTATIONS[position])); } if (this._gridSelectors[position]) { this.gridSelector(position, this._context.node.select("g.layoutGrid-" + com_ibm_rave_bundles_components_AxesManager.ORIENTATIONS[position])); } } layoutComponent.preLayout(axesBeforeLegend, true); com_ibm_rave_bundles_components_AxesManager.setRect(this._elementRect, layoutComponent.elementRect()); var countHorz = 0; var countVert = 0; var axes = []; for (var position = 0; position < 4; ++position) { var role = this.positionToRole(position); var isHorz = position == 1 || position == 0; if (this._axisSelectors[position] && this._scales[role]) { if (isHorz) { countHorz++; } else { countVert++; } if (this._scales[role].isOrdinal() || this._scales[role].isClustered()) { var score = isHorz ? 4 : 2; axes.push(new com_ibm_rave_bundles_components_AxesManager.AxisLayout(position, score)); } else { var score = isHorz ? 3 : 1; axes.push(new com_ibm_rave_bundles_components_AxesManager.AxisLayout(position, score)); } } else { axes.push(new com_ibm_rave_bundles_components_AxesManager.AxisLayout(position, 5)); } } axes.sort(function(a1, a2) { var a1value = a1.score; var a2value = a2.score; return a1value < a2value ? -1 : a1value > a2value ? 1 : 0; }); this._layoutAxisOrder = []; for (var i = 0; i < 4; ++i) { this._layoutAxisOrder[i] = axes[i].position; } this._layoutMaxWidth = this._elementRect.width * (countVert > 1 ? 0.5 : 0.4); this._layoutMaxHeight = this._elementRect.height * (countHorz > 1 ? 0.5 : 0.4); for (var index = 0; index < 4; ++index) { var position = this._layoutAxisOrder[index]; com_ibm_rave_bundles_components_AxesManager.setRect(this._axisRects[position], this._elementRect); } this.draw(); this._duration = layoutDuration; this._context.node.select("g.axes-layout").selectAll("*").remove(); for (var position = 0; position < 4; ++position) { this._lastAxisDrew[position] = layoutLastAxisDrew[position]; this._axisSelectors[position] = layoutAxisSelectors[position]; this._gridSelectors[position] = layoutGridSelectors[position]; } this._layoutInProgress = false; return this; }, getPositionToDraw : function(index) { return this._layoutInProgress ? this._layoutAxisOrder[index] : index; }, preDrawAxis : function(index) { if (this._layoutInProgress) { var position = this._layoutAxisOrder[index]; var role = this.positionToRole(position); if (role == 0 || role == 1) { this.setScaleRangePadded(this._scales[role], false, this._xPadding, this._xOuterPadding, this._xPixelPad); } else { this.setScaleRangePadded(this._scales[role], true, this._yPadding, this._yOuterPadding, this._yPixelPad); } this._axisComponents[role].allowAutomaticAxisLayoutToChangeOrientation(true); } }, postDrawAxis : function(index) { if (this._layoutInProgress) { var position = this._layoutAxisOrder[index]; var role = this.positionToRole(position); var axis = this._axisComponents[role]; var size = axis.getPreferredSize(); if (position == 1 || position == 0) { if (size > this._layoutMaxHeight) { size = this._layoutMaxHeight; } this._elementRect.height -= size; if (position == 1) { this._elementRect.y += size; } } else { if (size > this._layoutMaxWidth) { size = this._layoutMaxWidth; } this._elementRect.width -= size; if (position == 2) { this._elementRect.x += size; } } this._axisComponents[role].allowAutomaticAxisLayoutToChangeOrientation(false); } }, /** * Draw the axes and grids. This will set all the properties of the axes and grids, including the transforms and clip paths, then draw the shapes using a transition if required. Use {@link #this.redraw()} to simply re-render the shapes, for example when zooming. */ /** @expose */ draw : function() { for (var role = 0; role < 4; ++role) { this._lastAxisDrawSelectors[role] = null; this._lastGridDrawSelectors[role] = null; } for (var index = 0; index < 4; ++index) { var position = this.getPositionToDraw(index); var role = this.positionToRole(position); if (!this._visible || !this._axisSelectors[position] || !this._scales[role]) { this.clearAxis(position); this.clearGrid(position); } else { this.preDrawAxis(index); this.drawAxis(position, role); this.postDrawAxis(index); if (this._gridSelectors[position]) { this.drawGrid(position, role); } } } this._firstDraw = false; }, /** * @return (boolean) true if we are hiding any labels during pan-zoom. */ /** @expose */ hideAnyPanZoom : function() { return (this._suppressPanLabels[0] || this._suppressPanLabels[1] || this._suppressPanLabels[2] || this._suppressPanLabels[3]); }, /** * Redraw all the axes and grids used in the last call to {@link #this.draw()} , rendering the shapes into the same selector groups as used then. The component properties, transforms, and clip paths are not reset, and no transitions are used. This should be used for pan-zoom and may be used for other redraw events. * @param (boolean) panning Whether this is a pan in-progress; use false otherwise including when pan-zoom ends. */ /** @expose */ redraw : function(panning) { for (var role = 0; role < 4; ++role) { if (this._axisComponents[role] && this._lastAxisDrawSelectors[role]) { this._axisComponents[role].displayTickLabels(this._drawAxisLabels[role]); this._axisComponents[role].showPanZoomTickLabels(!panning || !this._suppressPanLabels[role]); var isAllow = this._axisComponents[role].isAllowAutomaticAxisLayoutToChangeOrientation(); this._axisComponents[role].allowAutomaticAxisLayoutToChangeOrientation(false); this._lastAxisDrawSelectors[role].call(this._axisComponents[role]); this._axisComponents[role].allowAutomaticAxisLayoutToChangeOrientation(isAllow); } if (this._gridComponents[role] && this._lastGridDrawSelectors[role]) { this._lastGridDrawSelectors[role].call(this._gridComponents[role]); } } }, /** @expose */ preventStaggerRotate45 : function(preventStaggerRotate45) { this._preventStaggerRotate45 = preventStaggerRotate45; }, /** * Draw the axis for the given role into the axis group for the given position. When called, the selector for the position and the scale for the role are non-null. This also sets the transform for the group and defines and sets the clip path for the axis. * @param (int) position The axis position, BOTTOM, TOP, LEFT, RIGHT * @param (int) role The axis role, X1, X2, Y1, or Y2 */ drawAxis : function(position, role) { var axisGroup = this._axisSelectors[position]; this._lastAxisDrawSelectors[role] = axisGroup; var comp = this.axisComponent(role); var layoutModeID = role == 2 ? "axis.y.labels.layoutMode" : role == 3 ? "axis.y2.labels.layoutMode" : "axis.x.labels.layoutMode"; var allowStaggerID = role == 2 ? "axis.y.labels.allowStagger" : role == 3 ? "axis.y2.labels.allowStagger" : "axis.x.labels.allowStagger"; var allowRotate45ID = role == 2 ? "axis.y.labels.allowRotate45" : role == 3 ? "axis.y2.labels.allowRotate45" : "axis.x.labels.allowRotate45"; var allowRotate90ID = role == 2 ? "axis.y.labels.allowRotate90" : role == 3 ? "axis.y2.labels.allowRotate90" : "axis.x.labels.allowRotate90"; var layoutMode = ""+(this._context.getPropertyValue(layoutModeID)); var allowStagger = !this._preventStaggerRotate45 && (this._context.getPropertyValue(allowStaggerID)); var allowRotate45 = !this._preventStaggerRotate45 && (this._context.getPropertyValue(allowRotate45ID)); var allowRotate90 = (this._context.getPropertyValue(allowRotate90ID)); var textTruncateIndicator = (this._context.getPropertyValue("axis.labels.truncationText")); var axisBounds = this._axisRects[position]; var orient = com_ibm_rave_bundles_components_AxesManager.ORIENTATIONS[position]; var transform = com_ibm_rave_bundles_components_AxisComponentImpl.getTranslation(axisBounds, orient); var axisTransform = "translate(" + transform[0] + "," + transform[1] + ")"; comp.scale(this._scales[role]).setRole(com_ibm_rave_bundles_components_AxesManager.ROLES[role]).bounds(axisBounds).elementRect(this._elementRect).orient(orient).layoutMode(layoutMode).allowStagger(allowStagger).allowRotate45(allowRotate45).allowRotate90(allowRotate90).setPreExecute(this._context.getPreExecute()).textTruncateIndicator(textTruncateIndicator); this._drawAxisLabels[role] = comp._displayTickLabels; var axisGroupUpdate = axisGroup; if (this._duration > 0 && !this._firstDraw && this._lastAxisDrew[position]) { axisGroupUpdate = axisGroup.transition().duration(this._duration); } axisGroupUpdate.attr("transform", axisTransform); axisGroupUpdate.call(comp); var dataSlotEntryList = this._dataSlotEntries[role]; axisGroup.selectAll(".axis-title").property("dataSlots", dataSlotEntryList); this._lastAxisDrew[position] = comp.renderedShapes(); if (this._defs) { var clipAxis = new com_ibm_rave_bundles_components_ClipPathComponentImpl(this._context.instanceId() + "clip" + orient); var text = axisGroup.append("text").text("000,000"); var bbox = text.node().getBBox(); var w = bbox.width; var h = bbox.height; text.remove(); var clipRect; if (position == 0 || position == 1) { var leftEdge = axisBounds.x + transform[0] * -1; var rightEdge = leftEdge + axisBounds.width; if (!(this._scales[role].isOrdinal()) && !(this._scales[role].isClustered())) { var numericLeftEdge = this._elementRect.x - w + transform[0] * -1; var numericRightEdge = numericLeftEdge + this._elementRect.width + w * 2; if (numericLeftEdge < leftEdge) { leftEdge = numericLeftEdge; } if (numericRightEdge > rightEdge) { rightEdge = numericRightEdge; } } clipRect = new rave['internal']['RectStruct'](leftEdge, axisBounds.y + transform[1] * -1, rightEdge - leftEdge, axisBounds.height); } else { clipRect = new rave['internal']['RectStruct'](axisBounds.x + transform[0] * -1, this._elementRect.y - h / 2 + transform[1] * -1, axisBounds.width, this._elementRect.height + h); } clipAxis.clipRect(clipRect).applyTo(axisGroup.select(".axis." + orient)).call(this._defs); } }, /** * If the axis selector for the position is defined, clear the shapes from the axis group. * @param (int) position The axis position, BOTTOM, TOP, LEFT, RIGHT */ clearAxis : function(position) { if (this._axisSelectors[position]) { this._clearAxis.scale(null); this._axisSelectors[position].call(this._clearAxis); } this._lastAxisDrew[position] = false; }, /** * Draw the grid for the given role into the axis group for the given position. When called, the selector for the role is non-null, and axis component has just been used to draw the axis shapes. This also sets the transform for the group. * @param (int) position The axis position, BOTTOM, TOP, LEFT, RIGHT * @param (int) role The axis role, X1, X2, Y1, or Y2 */ drawGrid : function(position, role) { var gridGroup = this._gridSelectors[position]; this._lastGridDrawSelectors[role] = gridGroup; var comp = this.gridComponent(role); var axisBounds = this._axisRects[position]; var orient = com_ibm_rave_bundles_components_AxesManager.ORIENTATIONS[position]; var transform = com_ibm_rave_bundles_components_AxisComponentImpl.getTranslation(axisBounds, orient); var axisTransform = "translate(" + transform[0] + "," + transform[1] + ")"; comp.setRole(com_ibm_rave_bundles_components_AxesManager.ROLES[role]).orient(orient).setPreExecute(this._context.getPreExecute()).bounds(this._elementRect).axis(this._axisComponents[role].axis()); if (this._duration <= 0 || this._firstDraw || !this._lastAxisDrew[position]) { gridGroup.attr("transform", axisTransform).call(comp); } else { gridGroup.transition().duration(this._duration).attr("transform", axisTransform).call(comp); } this._lastGridDrew[position] = comp.renderedShapes(); }, /** * If the grid selector for the position is defined, clear the shapes from the grid group. * @param (int) position The grid position, BOTTOM, TOP, LEFT, RIGHT */ clearGrid : function(position) { if (this._gridSelectors[position]) { this._clearGrid.axis(null); this._gridSelectors[position].call(this._clearGrid); } this._lastGridDrew[position] = false; }, /** * @param (boolean) visible Whether the manager should draw axes * @return (com.ibm.rave.bundles.components.AxesManager) This object */ /** @expose */ visible : function(visible) { this._visible = visible; return this; }, /** * @param (int) duration The transition duration; if <= 0, no transition is used. * @return (com.ibm.rave.bundles.components.AxesManager) This object */ /** @expose */ duration : function(duration) { this._duration = duration; return this; }, /** * @param (boolean) transpose Whether to transpose the chart (switch the positions of the X and Y axis) * @return (com.ibm.rave.bundles.components.AxesManager) This object */ /** @expose */ transpose : function(transpose) { this._transpose = transpose; return this; }, /** * @param (boolean) swapX Whether to switch the postitions of the X1 and X2 axes * @return (com.ibm.rave.bundles.components.AxesManager) This object */ /** @expose */ swapX : function(swapX) { this._swapX = swapX; return this; }, /** * @param (boolean) swapY Whether to switch the postitions of the Y1 and Y2 axes * @return (com.ibm.rave.bundles.components.AxesManager) This object */ /** @expose */ swapY : function(swapY) { this._swapY = swapY; return this; }, /** * @param (int) role An axis role, one of {@link this.AxesManager#0} , {@link this.AxesManager#1} , {@link this.AxesManager#2} , {@link this.AxesManager#3} . * @param (rave['library']['internal']['CoordinateScaleImpl']) scale The coordinate scale for that role, may be null * @return (com.ibm.rave.bundles.components.AxesManager) This object */ /** @expose */ scale : function(role, scale) { this._scales[role] = scale; return this; }, /** * @param (int) role An axis role, one of {@link this.AxesManager#0} , {@link this.AxesManager#1} , {@link this.AxesManager#2} , {@link this.AxesManager#3} . * @param (boolean) suppressLabels Whether to suppress the labels when panning the axis * @return (com.ibm.rave.bundles.components.AxesManager) This object */ /** @expose */ suppressPanLabels : function(role, suppressLabels) { this._suppressPanLabels[role] = suppressLabels; return this; }, /** * Get the AxisComponentImpl used to render a role. Views should use this to set the appearance properties of the axis. Other properties are handled by the manager. * @param (int) role The role, one of {@link this.AxesManager#0} , {@link this.AxesManager#1} , {@link this.AxesManager#2} , {@link this.AxesManager#3} . * @return (com.ibm.rave.bundles.components.AxisComponentImpl) The component for the role */ /** @expose */ axisComponent : function(role) { if (!this._axisComponents[role]) { this._axisComponents[role] = new com_ibm_rave_bundles_components_AxisComponentImpl(); } return this._axisComponents[role]; }, /** * Get the GridComponentImpl used to render a role. Views should use this to set the appearance properties of the grid. Other properties are handled by the manager. * @param (int) role The role, one of {@link this.AxesManager#0} , {@link this.AxesManager#1} , {@link this.AxesManager#2} , {@link this.AxesManager#3} . * @return (com.ibm.rave.bundles.components.GridComponentImpl) The component for the role */ /** @expose */ gridComponent : function(role) { if (!this._gridComponents[role]) { this._gridComponents[role] = new com_ibm_rave_bundles_components_GridComponentImpl(); } return this._gridComponents[role]; }, /** * Set the bundle <defs> node. Clip paths will be defined in this node. * @param (rave['internal']['Selector']) defs The defs node * @return (com.ibm.rave.bundles.components.AxesManager) This object */ /** @expose */ defsSelector : function(defs) { this._defs = com_ibm_rave_bundles_components_AxesManager.checkSelector(defs); return this; }, /** * Set the selector for an axis group node. * @param (int) position The position, one of BOTTOM, TOP, LEFT, RIGHT * @param (rave['internal']['Selector']) axisGroup The axis group node, may be null * @return (com.ibm.rave.bundles.components.AxesManager) This object */ /** @expose */ axisSelector : function(position, axisGroup) { this._axisSelectors[position] = com_ibm_rave_bundles_components_AxesManager.checkSelector(axisGroup); return this; }, /** * Set the selector for a grid group node. * @param (int) position The position, one of BOTTOM, TOP, LEFT, RIGHT * @param (rave['internal']['Selector']) gridGroup The grid group node, may be null * @return (com.ibm.rave.bundles.components.AxesManager) This object */ /** @expose */ gridSelector : function(position, gridGroup) { this._gridSelectors[position] = com_ibm_rave_bundles_components_AxesManager.checkSelector(gridGroup); return this; }, /** * Set the element (grid) bounds rectangle to a copy of the given rectangle. * @param (rave['internal']['RectStruct']) elementRect The rectangle, if null the bounds are set to 0,0,0,0 * @return (com.ibm.rave.bundles.components.AxesManager) This object */ /** @expose */ elementRect : function(elementRect) { com_ibm_rave_bundles_components_AxesManager.setRect(this._elementRect, elementRect); return this; }, /** * Set an axis bounds rectangle to a copy of the given rectangle. * @param (int) position The position, one of BOTTOM, TOP, LEFT, RIGHT * @param (rave['internal']['RectStruct']) axisRect The axis bounds, if null the bounds are set to 0,0,0,0 * @return (com.ibm.rave.bundles.components.AxesManager) This object */ /** @expose */ axisRect : function(position, axisRect) { com_ibm_rave_bundles_components_AxesManager.setRect(this._axisRects[position], axisRect); return this; }, /** * Convenience method. Set all the selectors using context.node as the root of a selection, and assuming the default chart structure: the defs node is the "defs" selection, the left axis is "g.axis.left", and so on. * @return (com.ibm.rave.bundles.components.AxesManager) This object */ /** @expose */ useDefaultSelectors : function() { this.defsSelector(this._context.node.select("defs")); this.axisSelector(0, this._context.node.select("g.axisTransform.bottom")); this.axisSelector(1, this._context.node.select("g.axisTransform.top")); this.axisSelector(2, this._context.node.select("g.axisTransform.left")); this.axisSelector(3, this._context.node.select("g.axisTransform.right")); this.gridSelector(0, this._context.node.select("g.grid.bottom")); this.gridSelector(1, this._context.node.select("g.grid.top")); this.gridSelector(2, this._context.node.select("g.grid.left")); this.gridSelector(3, this._context.node.select("g.grid.right")); return this; }, /** * Convenience method: Set the element rectangle and axis rectangles from the rectangles in the layout. * @param (com.ibm.rave.bundles.components.ChartLayoutComponentImpl) layoutInfo Layout information * @return (com.ibm.rave.bundles.components.AxesManager) This object */ /** @expose */ useBoundsFromLayout : function(layoutInfo) { com_ibm_rave_bundles_components_AxesManager.setRect(this._elementRect, layoutInfo.elementRect()); com_ibm_rave_bundles_components_AxesManager.setRect(this._axisRects[0], layoutInfo.bottomRect()); com_ibm_rave_bundles_components_AxesManager.setRect(this._axisRects[1], layoutInfo.topRect()); com_ibm_rave_bundles_components_AxesManager.setRect(this._axisRects[2], layoutInfo.leftRect()); com_ibm_rave_bundles_components_AxesManager.setRect(this._axisRects[3], layoutInfo.rightRect()); return this; }, /** * Convenience method: Set the X1 axis and grid appearance properties from the context, using the usual {@link (rave['library']['internal']['CommonPropertyIDs']) CommonPropertyIDs} . Sets the the padding to the default 16. This does not set the tick format. * @param (boolean) setGridParameters Whether to set the grid parameters (do not use if chart does not define grid) * @return (com.ibm.rave.bundles.components.AxesManager) This object */ /** @expose */ useDefaultX1Properties : function(setGridParameters) { this.axisComponent(0).padding(16).displayAxisTitle(((this._context.getPropertyValue("axis.x.title.display")))).axisTitle(this._context.getDataSlotLabel("axis.x.title.text", this._dataSlotEntries[0])).displayAxisLine(((this._context.getPropertyValue("axis.x.line.display")))).lineColor((this._context.getPropertyValue("axis.x.line.style.stroke"))).displayTicks(((this._context.getPropertyValue("axis.x.ticks.display")))).tickColor((this._context.getPropertyValue("axis.x.ticks.style.stroke"))).displayTickLabels(((this._context.getPropertyValue("axis.x.labels.display")))); var titleFontStyle = (this._context.getPropertyValue("axis.x.title.style.font")); var labelFontStyle = (this._context.getPropertyValue("axis.x.labels.style.font")); if (labelFontStyle != null && labelFontStyle.length > 0) { this.axisComponent(0).labelStyle(labelFontStyle); } else { this.axisComponent(0).labelStyle((this._context.getPropertyValue("axis.x.labels.style.fill")), (this._context.getPropertyValue("axis.x.labels.style.font-size")), (this._context.getPropertyValue("axis.x.labels.style.font-family"))); } if (titleFontStyle != null && titleFontStyle.length > 0) { this.axisComponent(0).titleStyle(titleFontStyle); } else { this.axisComponent(0).titleStyle((this._context.getPropertyValue("axis.x.title.style.fill")), (this._context.getPropertyValue("axis.x.title.style.font-size")), (this._context.getPropertyValue("axis.x.title.style.font-family"))); } if (setGridParameters) { this.gridComponent(0).displayGridlines(((this._context.getPropertyValue("axis.x.gridlines.display")))).gridlineStyle((this._context.getPropertyValue("axis.x.gridlines.style.stroke")), (this._context.getPropertyValue("axis.x.gridlines.style.stroke-dasharray"))); } this.suppressPanLabels(0, (this._context.getPropertyValue("axis.x.labels.zoomPan"))); return this; }, /** * Convenience method: Set the Y1 axis and grid appearance properties from the context, using the usual {@link (rave['library']['internal']['CommonPropertyIDs']) CommonPropertyIDs} . Sets the the padding to the default 16. This does not set the tick format. * @param (boolean) setGridParameters Whether to set the grid parameters (do not use if chart does not define grid) * @return (com.ibm.rave.bundles.components.AxesManager) This object */ /** @expose */ useDefaultY1Properties : function(setGridParameters) { this.axisComponent(2).padding(16).displayAxisTitle((this._context.getPropertyValue("axis.y.title.display"))).axisTitle(this._context.getDataSlotLabel("axis.y.title.text", this._dataSlotEntries[2])).displayAxisLine((this._context.getPropertyValue("axis.y.line.display"))).lineColor((this._context.getPropertyValue("axis.y.line.style.stroke"))).displayTicks((this._context.getPropertyValue("axis.y.ticks.display"))).tickColor((this._context.getPropertyValue("axis.y.ticks.style.stroke"))).displayTickLabels((this._context.getPropertyValue("axis.y.labels.display"))); var titleFontStyle = (this._context.getPropertyValue("axis.y.title.style.font")); var labelFontStyle = (this._context.getPropertyValue("axis.y.labels.style.font")); if (labelFontStyle != null && labelFontStyle.length > 0) { this.axisComponent(2).labelStyle(labelFontStyle); } else { this.axisComponent(2).labelStyle((this._context.getPropertyValue("axis.y.labels.style.fill")), (this._context.getPropertyValue("axis.y.labels.style.font-size")), (this._context.getPropertyValue("axis.y.labels.style.font-family"))); } if (titleFontStyle != null && titleFontStyle.length > 0) { this.axisComponent(2).titleStyle(titleFontStyle); } else { this.axisComponent(2).titleStyle((this._context.getPropertyValue("axis.y.title.style.fill")), (this._context.getPropertyValue("axis.y.title.style.font-size")), (this._context.getPropertyValue("axis.y.title.style.font-family"))); } if (setGridParameters) { this.gridComponent(2).displayGridlines((this._context.getPropertyValue("axis.y.gridlines.display"))).gridlineStyle((this._context.getPropertyValue("axis.y.gridlines.style.stroke")), (this._context.getPropertyValue("axis.y.gridlines.style.stroke-dasharray"))); } this.suppressPanLabels(2, (this._context.getPropertyValue("axis.y.labels.zoomPan"))); return this; }, /** * Convenience method: Set the Y2 axis and grid appearance properties from the context, using the usual {@link (rave['library']['internal']['CommonPropertyIDs']) CommonPropertyIDs} . Sets the the padding to the default 16. This does not set the tick format. * @param (boolean) setGridParameters Whether to set the grid parameters (do not use if chart does not define grid) * @return (com.ibm.rave.bundles.components.AxesManager) This object */ /** @expose */ useDefaultY2Properties : function(setGridParameters) { this.axisComponent(3).padding(16).displayAxisTitle((this._context.getPropertyValue("axis.y2.title.display"))).axisTitle(this._context.getDataSlotLabel("axis.y2.title.text", this._dataSlotEntries[3])).displayAxisLine((this._context.getPropertyValue("axis.y2.line.display"))).lineColor((this._context.getPropertyValue("axis.y2.line.style.stroke"))).displayTicks((this._context.getPropertyValue("axis.y2.ticks.display"))).tickColor((this._context.getPropertyValue("axis.y2.ticks.style.stroke"))).displayTickLabels((this._context.getPropertyValue("axis.y2.labels.display"))); var titleFontStyle = (this._context.getPropertyValue("axis.y2.title.style.font")); var labelFontStyle = (this._context.getPropertyValue("axis.y2.labels.style.font")); if (labelFontStyle != null && labelFontStyle.length > 0) { this.axisComponent(3).labelStyle(labelFontStyle); } else { this.axisComponent(3).labelStyle((this._context.getPropertyValue("axis.y2.labels.style.fill")), (this._context.getPropertyValue("axis.y2.labels.style.font-size")), (this._context.getPropertyValue("axis.y2.labels.style.font-family"))); } if (titleFontStyle != null && titleFontStyle.length > 0) { this.axisComponent(3).titleStyle(titleFontStyle); } else { this.axisComponent(3).titleStyle((this._context.getPropertyValue("axis.y2.title.style.fill")), (this._context.getPropertyValue("axis.y2.title.style.font-size")), (this._context.getPropertyValue("axis.y2.title.style.font-family"))); } if (setGridParameters) { this.gridComponent(3).displayGridlines((this._context.getPropertyValue("axis.y2.gridlines.display"))).gridlineStyle((this._context.getPropertyValue("axis.y2.gridlines.style.stroke")), (this._context.getPropertyValue("axis.y2.gridlines.style.stroke-dasharray"))); } this.suppressPanLabels(3, (this._context.getPropertyValue("axis.y2.labels.zoomPan"))); return this; }, /** * Set the tick formatting function for the given axis role. The custom formatter is found using {@link this.BundleContext#this.getCustomFormatterWithFlag(, rave['library']['internal']['CustomFormatInfo'], rave['internal']['ValueFunction'], )} , searching for formatters in the order role, position of role, AXIS, and ALL, and using the given ValueFunction as the default if none are provided. The returned value function is set as the axis component's tick format. This must be called after setting the transpose, swapX, and swapY properties, since the position of the role depends on those properties. * @param (int) role One of {@link this.AxesManager#0} , {@link this.AxesManager#1} , {@link this.AxesManager#2} , {@link this.AxesManager#3} . * @param (Array) entries Non-null list of data slot entries * @param (String) format One of {@link this.CustomFormatInfo#"none"} or {@link this.CustomFormatInfo#"percent"} * @param (rave['internal']['ValueFunction']) defaultFunction Default function to use if no custom formatter is defined for the axis, may be null * @return (com.ibm.rave.bundles.components.AxesManager) This object */ /** @expose */ setTickFormatterList : function(role, entries, format, defaultFunction) { var fmtRole; switch (role) { case 2: fmtRole = "ROLE_Y1"; break; case 1: fmtRole = "ROLE_X2"; break; case 3: fmtRole = "ROLE_Y2"; break; case 0: default: fmtRole = "ROLE_X1"; break; } var fmt = this._context.getCustomFormatterWithFlag([com_ibm_rave_bundles_components_AxesManager.ROLE_FORMATTERS[role], com_ibm_rave_bundles_components_AxesManager.FORMATTERS[this.roleToPosition(role)], "axis", "all"], rave['library']['internal']['BundleContext'].makeCustomFormatInfo("axis-label", fmtRole, format, entries), defaultFunction, false); this.axisComponent(role).tickFormat(fmt); var simplefmt = this._context.getCustomFormatterWithFlag([com_ibm_rave_bundles_components_AxesManager.ROLE_FORMATTERS[role], com_ibm_rave_bundles_components_AxesManager.FORMATTERS[this.roleToPosition(role)], "axis", "all"], rave['library']['internal']['BundleContext'].makeCustomFormatInfo("axis-label", fmtRole, format, entries), defaultFunction, true); this.axisComponent(role).simplifiedTickFormat(simplefmt); return this; }, /** * Utility for the common case where there is only one data slot entry and no special formatting or default. Makes a list of the entry and calls {@link #this.setTickFormatterList(, Array, String, rave['internal']['ValueFunction'])} with the "none" format and a null default function. * @param (int) role One of {@link this.AxesManager#0} , {@link this.AxesManager#1} , {@link this.AxesManager#2} , {@link this.AxesManager#3} . * @param (rave['library']['internal']['DataSlotEntry']) entry Data slot entry, if null it is not added to the list * @return (com.ibm.rave.bundles.components.AxesManager) This object */ /** @expose */ setTickFormatter : function(role, entry) { var entries = []; if (entry) { entries.push(entry); } return this.setTickFormatterList(role, entries, "none", null); }, /** * Calls {@link #this.setScaleRangePadded(rave['library']['internal']['CoordinateScaleImpl'], , Number, Number, )} for each defined scale. * @param (Number) padding Padding, relevant only for ordinal scales * @param (Number) outerPadding Outer padding, relevant only for ordinal scales * @param (int) pixelPad Pixel padding at each end * @return (com.ibm.rave.bundles.components.AxesManager) This object */ /** @expose */ setScaleRanges : function(padding, outerPadding, pixelPad) { this.setIndependentScaleRanges(padding, outerPadding, pixelPad); this.setDependentScaleRanges(padding, outerPadding, pixelPad); return this; }, /** * Calls {@link #this.setScaleRangePadded(rave['library']['internal']['CoordinateScaleImpl'], , Number, Number, )} for each defined independent scale. * @param (Number) padding Padding, relevant only for ordinal scales * @param (Number) outerPadding Outer padding, relevant only for ordinal scales * @param (int) pixelPad Pixel padding at each end * @return (com.ibm.rave.bundles.components.AxesManager) This object */ /** @expose */ setIndependentScaleRanges : function(padding, outerPadding, pixelPad) { this.setScaleRangePadded(this._scales[0], false, padding, outerPadding, pixelPad); this.setScaleRangePadded(this._scales[1], false, padding, outerPadding, pixelPad); return this; }, /** * Calls {@link #this.setScaleRangePadded(rave['library']['internal']['CoordinateScaleImpl'], , Number, Number, )} for each defined independent scale. * @param (Number) padding Padding, relevant only for ordinal scales * @param (Number) outerPadding Outer padding, relevant only for ordinal scales * @param (int) pixelPad Pixel padding at each end * @return (com.ibm.rave.bundles.components.AxesManager) This object */ /** @expose */ setDependentScaleRanges : function(padding, outerPadding, pixelPad) { this.setScaleRangePadded(this._scales[2], true, padding, outerPadding, pixelPad); this.setScaleRangePadded(this._scales[3], true, padding, outerPadding, pixelPad); return this; }, /** * Set a data slot entry that will be associated with the specified axis role.

    To associate multiple data slots with an axis role, see {@link #this.setDataSlot(, Array)} . * @param (int) role An axis role, one of {@link this.AxesManager#0} , {@link this.AxesManager#1} , {@link this.AxesManager#2} , {@link this.AxesManager#3} . * @param (rave['library']['internal']['DataSlotEntry']) slot DataSlotEntry to be associated with the axis role. */ setDataSlot$0 : function(role, slot) { this.setDataSlot$1(role, [slot]); return this; }, /** * Set a list of data slot entries that will be associated with the specified axis role. * @param (int) role An axis role, one of {@link this.AxesManager#0} , {@link this.AxesManager#1} , {@link this.AxesManager#2} , {@link this.AxesManager#3} . * @param (Array) slots List of DataSlotEntry to be associated with the axis role. */ setDataSlot$1 : function(role, slots) { if (role < 4 && role >= 0) { this._dataSlotEntries[role].length = 0; if (slots) { for (var __i_enFor0 = 0, __exp_enFor0 = slots, __len_enFor0 = __exp_enFor0.length; __i_enFor0 < __len_enFor0; ++__i_enFor0) { var slot = __exp_enFor0[__i_enFor0]; this._dataSlotEntries[role].push(slot); } } } return this; }, /** *

    Set the coordinate range of a scale. This should be used only after the transpose and center rectangle have been set. Transpose and dependent are used to choose either the X or Y extent of the center rectangle. The extent is padded by pixelPad pixels at each end, so the smallest value of the domain will map to the extent's start+pixelPadding, and the largest value of the domain to the extent's end-pixelPadding.

    TODO: This would be a good place for scale reverse. * @param (rave['library']['internal']['CoordinateScaleImpl']) scale Bundle independent scale * @param (boolean) dependent Whether this is the dependent scale * @param (Number) padding Padding, relevant only for ordinal scales * @param (Number) outerPadding Outer padding, relevant only for ordinal scales * @param (int) pixelPad Pixel padding at each end */ setScaleRangePadded : function(scale, dependent, padding, outerPadding, pixelPad) { if (scale) { var min, max; if (dependent == this._transpose) { min = this._elementRect.x + pixelPad; max = this._elementRect.x + this._elementRect.width - pixelPad; } else { if (scale.isContinuous()) { min = this._elementRect.y + this._elementRect.height - pixelPad; max = this._elementRect.y + pixelPad; } else { min = this._elementRect.y + pixelPad; max = this._elementRect.y + this._elementRect.height - pixelPad; } } scale.range(min, max, padding, outerPadding); } }, /** * Given a geometric position BOTTOM, TOP, LEFT, or RIGHT, return the role X1, X2, Y1, or Y2 used by that role. * @param (int) position The position index * @return (int) The role index */ positionToRole : function(position) { var r = position; if (this._transpose) { r = (r + 2) % 4; } if (this._swapX && r < 2) { r = 1 - r; } if (this._swapY && r > 1) { r = 5 - r; } return r; }, /** * Given a role X1, X2, Y1, or Y2, return the geometric position BOTTOM, TOP, LEFT, or RIGHT for that role. * @param (int) role The role index * @return (int) The position index */ roleToPosition : function(role) { var p = role; if (this._swapX && role < 2) { p = 1 - p; } if (this._swapY && p > 1) { p = 5 - p; } if (this._transpose) { p = (p + 2) % 4; } return p; }, /** * Sets the magnitude for the tick interval. * @param (int) role role index of the axis * @param (Number) tickMagnitude power of 10 * @return (com.ibm.rave.bundles.components.AxesManager) this */ /** @expose */ scaleTickMagnitude : function(role, tickMagnitude) { this.axisComponent(role).scaleTickMagnitude(tickMagnitude); return this; }, /** @expose */ setDataSlot : function(a0, a1) { var args = arguments; if (args.length == 2 && typeof a1 === "function") { return this.setDataSlot$0(a0, a1); } return this.setDataSlot$1(a0, a1); } }); /** * @param (rave['internal']['Selector']) s A selector * @return (rave['internal']['Selector']) s if it is non-null and has at least one node, null otherwise */ com_ibm_rave_bundles_components_AxesManager.checkSelector = function(s) { return s && !(s.empty()) ? s : null; }; /** * Set a rectangle to a copy of another. If the source is null, the target is set to 0,0,0,0 * @param (rave['internal']['RectStruct']) target A non-null rectangle * @param (rave['internal']['RectStruct']) source A possibly-null rectnalge */ com_ibm_rave_bundles_components_AxesManager.setRect = function(target, source) { if (source) { target.x = source.x; target.y = source.y; target.width = source.width; target.height = source.height; } else { target.x = 0; target.y = 0; target.width = 0; target.height = 0; } }; /** * A ValueFunction that appends '%' to the value. * @param (int) n Number of digits */ /** @expose */ com_ibm_rave_bundles_components_AxesManager.percentFormat = function(n) { var digits = "." + n + "f"; var format = rave.format(digits); return function(value, ix, gix) { return format.call(null, value, 0, 0) + "%"; }; }; /** * Called prior to chart layout. Axes are configured with no real bounding constraints to calculate their preferred size. */ com_ibm_rave_bundles_components_AxesManager.AxisLayout = rave['internal']['Declare']({ /** @expose */ position : 0, /** @expose */ score : 0, constructor : function(position, score) { this.position = position; this.score = score; } }); /** * Logical first X (independent) axis, default position bottom */ /** @expose */ com_ibm_rave_bundles_components_AxesManager.X1 = 0; /** * Logical second X (independent) axis, default position top */ /** @expose */ com_ibm_rave_bundles_components_AxesManager.X2 = 1; /** * Logical first Y (dependent) axis, default position left */ /** @expose */ com_ibm_rave_bundles_components_AxesManager.Y1 = 2; /** * Logical first Y (dependent) axis, default position right */ /** @expose */ com_ibm_rave_bundles_components_AxesManager.Y2 = 3; /** * Geometric group on bottom */ /** @expose */ com_ibm_rave_bundles_components_AxesManager.BOTTOM = 0; /** * Geometric group on top */ /** @expose */ com_ibm_rave_bundles_components_AxesManager.TOP = 1; /** * Geometric group on left */ /** @expose */ com_ibm_rave_bundles_components_AxesManager.LEFT = 2; /** * Geometric group on right */ /** @expose */ com_ibm_rave_bundles_components_AxesManager.RIGHT = 3; /** * Maps the role indexes to the role strings used by the components API */ com_ibm_rave_bundles_components_AxesManager.ROLES = ["ROLE_X1", "ROLE_X2", "ROLE_Y1", "ROLE_Y2"]; /** * Maps the role indexes to the role strings used by the custom formatter API. TODO: Unify the strings */ com_ibm_rave_bundles_components_AxesManager.ROLE_FORMATTERS = ["ROLE_X1", "ROLE_X2", "ROLE_Y1", "ROLE_Y2"]; /** * Maps the position indexes to the orient strings used by D3 */ com_ibm_rave_bundles_components_AxesManager.ORIENTATIONS = ["bottom", "top", "left", "right"]; /** * Maps the position indexes to the custom formatter strings */ com_ibm_rave_bundles_components_AxesManager.FORMATTERS = ["bottom", "top", "left", "right"]; // $source: com/ibm/rave/bundles/component/AxisComponent /************************************************************************ ** IBM Confidential ** ** IBM Business Analytics: Rapidly Adaptive Visualization Engine ** ** (C) Copyright IBM Corp. 2017 ** ** The source code for this program is not published or otherwise divested of its trade secrets, ** irrespective of what has been deposited with the U.S. Copyright Office. ************************************************************************/ // GENERATED /** *

    A component that renders an axis (RAVE core Axis) with an optional title in an XY axis chart. The {@link #this.type()} method returns "AxisComponent".

    The {@link #this.role()} method is used to identify the axis. Most charts with axes will use only the {@link #"ROLE_X1"} and {@link #"ROLE_Y1"} roles. The composite bundle also uses {@link #"ROLE_Y2"} . {@link #"ROLE_X2"} is not currently used by any chart.

    The axis component uses a RAVE capability axis, available with {@link #this.axis()} . When used with a pre-execution callback, the axis is only valid for the duration of the callback (do not use the reference outside the callback). Properties of the capability axis may be set by the pre-execution callback, but note that many properties are set by the AxisComponent after the callback. To change those properties, use the methods of this class to change the AxisComponent, which will then set the capability axis properties.

    */ var com_ibm_rave_bundles_component_AxisComponent = rave['internal']['Declare'].implement( /** * @return (String) The role of the axis in the chart */ //role : function() {}, /** * @return (rave['internal']['Axis']) The capability Axis used by this AxisComponent */ //axis : function() {}, /** * The tickFormat is applied to the values of the ticks to create the string that is displayed. * @param (rave['internal']['ValueFunction']) tickFormat The new tickFormat * @return (com.ibm.rave.bundles.component.AxisComponent) This component */ //tickFormat : function(tickFormat) {}, /** * Get the tickFormat function used by this component. May be null. * @return (rave['internal']['ValueFunction']) Format function, or null */ //tickFormat : function() {}, /** * Set the indicator to be used for truncated text ex: indicator set to "..." , results in helloworld - > hello... * @param (String) indicator the string to be placed to indicated truncated text * @return (com.ibm.rave.bundles.component.AxisComponent) This component */ //textTruncateIndicator : function(indicator) {}, /** * Whether to display the axis title. * @param (boolean) displayAxisTitle true to display the axis title, false otherwise * @return (com.ibm.rave.bundles.component.AxisComponent) This component */ //displayAxisTitle : function(displayAxisTitle) {}, /** * Whether to display the axis line. * @param (boolean) displayAxisLine true to display the axis line, false otherwise * @return (com.ibm.rave.bundles.component.AxisComponent) This component */ //displayAxisLine : function(displayAxisLine) {}, /** * Whether to display the axis tick marks. * @param (boolean) displayTicks true to display the axis ticks, false otherwise * @return (com.ibm.rave.bundles.component.AxisComponent) This component */ //displayTicks : function(displayTicks) {}, /** * Whether to display the axis labels, as set by the show axis labels property * @param (boolean) displayTickLabels true to display the axis tick labels, false otherwise * @return (com.ibm.rave.bundles.component.AxisComponent) This component */ //displayTickLabels : function(displayTickLabels) {}, /** * Whether to display the axis labels, as set by the hide pan-zoom labels property * @param (boolean) showPanZoomTickLabels true to display the axis tick labels, false otherwise * @return (com.ibm.rave.bundles.component.AxisComponent) This component */ //showPanZoomTickLabels : function(showPanZoomTickLabels) {}, /** * @param (String) axisTitle The new axisTitle * @return (com.ibm.rave.bundles.component.AxisComponent) This component */ //axisTitle : function(axisTitle) {}, /** * The color used to draw the axis line and ticks. This is equivalent to calling both {@link #this.lineColor(String)} and {@link #this.tickColor(String)} . * @param (String) axisColor The new line and tick color * @return (com.ibm.rave.bundles.component.AxisComponent) This component */ //axisColor : function(axisColor) {}, /** * The color used to draw the axis line. * @param (String) lineColor The new lineColor * @return (com.ibm.rave.bundles.component.AxisComponent) This component */ //lineColor : function(lineColor) {}, /** * The color used to draw the axis ticks. * @param (String) tickColor The new tickColor * @return (com.ibm.rave.bundles.component.AxisComponent) This component */ //tickColor : function(tickColor) {}, /** * The color used to draw the axis labels. * @param (String) labelColor The new labelColor * @return (com.ibm.rave.bundles.component.AxisComponent) This component */ //labelColor : function(labelColor) {}, /** * The style for the axis labels. * @param (String) fontStyle CSS string of font properties * @return (com.ibm.rave.bundles.component.AxisComponent) This component */ //labelStyle : function(fontStyle) {}, /** * The style for the axis labels. * @param (String) fill The color used to draw the labels * @param (String) fontSize CSS font size * @param (String) fontFamily CSS font-families list * @return (com.ibm.rave.bundles.component.AxisComponent) This component */ //labelStyle : function(fill, fontSize, fontFamily) {}, /** * The color used to draw the axis title. * @param (String) titleColor The new titleColor * @return (com.ibm.rave.bundles.component.AxisComponent) This component */ //titleColor : function(titleColor) {}, /** * The style for the axis title. * @param (String) fontStyle CSS string of font properties * @return (com.ibm.rave.bundles.component.AxisComponent) This component */ //titleStyle : function(fontStyle) {}, /** * The style for the axis title. * @param (String) fill The color used to draw the title * @param (String) fontSize CSS font size * @param (String) fontFamily CSS font-families list * @return (com.ibm.rave.bundles.component.AxisComponent) This component */ //titleStyle : function(fill, fontSize, fontFamily) {} ); /** * The string returned by {@link #this.type()} is "AxisComponent". */ /** @expose */ com_ibm_rave_bundles_component_AxisComponent.COMPONENT_TYPE = "AxisComponent"; /** * Returned by {@link #this.role()} for the first independent axis. */ /** @expose */ com_ibm_rave_bundles_component_AxisComponent.ROLE_X1 = "ROLE_X1"; /** * Returned by {@link #this.role()} for the first dependent axis. */ /** @expose */ com_ibm_rave_bundles_component_AxisComponent.ROLE_Y1 = "ROLE_Y1"; /** * Returned by {@link #this.role()} for the second independent axis. */ /** @expose */ com_ibm_rave_bundles_component_AxisComponent.ROLE_X2 = "ROLE_X2"; /** * Returned by {@link #this.role()} for the second dependent axis. */ /** @expose */ com_ibm_rave_bundles_component_AxisComponent.ROLE_Y2 = "ROLE_Y2"; // $source: com/ibm/rave/bundles/utilities/TextCrossfader /************************************************************************ ** IBM Confidential ** ** IBM Business Analytics: Rapidly Adaptive Visualization Engine ** ** (C) Copyright IBM Corp. 2017 ** ** The source code for this program is not published or otherwise divested of its trade secrets, ** irrespective of what has been deposited with the U.S. Copyright Office. ************************************************************************/ // GENERATED /** *

    Utility class for setting up a cross-fade of a single text node. This could be extended to a multiple-node selection (e.g. using value functions to return the text strings for each node in the selection), but that is not yet needed in the bundles. However use this with care, since if the transition does select multiple texts, they will all change to the new text string.

    Any other text properties that are changing, for example the color or position, can be set up in the transition either before or after calling the utility method.

    */ var com_ibm_rave_bundles_utilities_TextCrossfader = rave['internal']['Declare']({ }); /** *

    Perform a text cross fade for a single text node. The selection holds that node. If it is not a transition, the new text is set; otherwise the cross-fade transition is done using tweeners on the "text" and "fill-opacity" attributes.

    The "text" attribute tweener uses the oldText before transition time 0.5, and the new text thereafter. (Note this assumes that the old text is in fact the node's text; if not, the displayed text will change to the "old" text when the transition begins, then to the new text halfway through the transition.)

    The text is optionally faded out and back in, disappearing completely at time 0.5, by setting the "fill-opacity" style attribute. The fading is controlled by the delay argument, which is clamped to the range [0.0, 0.5]. If the clamped delay is 0.5, or if the text does not actually change, no crossfade is used. Otherwise the opacity is full for transition times less than the delay or greater than 1-delay, fading to 0.0 at time 0.5. For example if the delay is 0.2, the opacity will be full from transition time 0.0 to 0.2, fade out linearly to 0 at time 0.5, fade in linearly to full at time 0.8, and be full from time 0.8 to 1.0.

    The old and new texts and the full opacity are all passed as arguments, because it is generally not safe to try to find the values when the method runs. In particular, if we run this method while a transition (such as a previous cross-fade) is already in progress, we may pick up an intermediate fill-opacity value, perhaps even 0.0, and set the text opacity to that value! * @param (rave['internal']['Selection']) selection Selection containing the single text node, may be a transition * @param (String) oldText Old value of the text string, may be null * @param (String) newText New value of the text string, may be null * @param (Object) fillOpacity Fill opacity, may be null (in which case 1.0 is assumed) * @param (double) delay Number between 0 and 0.5 controlling the timing of the fade * @return (rave['internal']['Selection']) The selection, modified by the new text and fill-opacity */ /** @expose */ com_ibm_rave_bundles_utilities_TextCrossfader.textCrossFade = function(selection, oldText, newText, fillOpacity, delay) { if (!(selection.isTransition())) { return selection.text(newText); } var _t = (selection).tween("text", function(data, index, groupIndex) { return function(t) { this.rave_setText(t < 0.5 ? oldText : newText); }; }); var t0 = Math.max(0.0, Math.min(0.5, delay)); if (t0 == 0.5 || (oldText == null && newText == null) || (oldText != null && oldText == newText)) { return selection; } var opacity = fillOpacity == null ? 1.0 : + (fillOpacity); var tf = 1.0 / (0.5 - t0); return _t.tween("fill-opacity", function(data, index, groupIndex) { return function(t) { if (t <= t0 || t >= (1.0 - t0)) { this.rave_setStyle("fill-opacity", fillOpacity); } else { this.rave_setStyle("fill-opacity", opacity * Math.abs(t - 0.5) * tf); } }; }); }; // $source: com/ibm/rave/bundles/utilities/BundleLabelDropper /************************************************************************ ** IBM Confidential ** ** IBM Business Analytics: Rapidly Adaptive Visualization Engine ** ** (C) Copyright IBM Corp. 2017 ** ** The source code for this program is not published or otherwise divested of its trade secrets, ** irrespective of what has been deposited with the U.S. Copyright Office. ************************************************************************/ // GENERATED var com_ibm_rave_bundles_utilities_BundleLabelDropper = rave['internal']['Declare']({ //_dropOverlap : null, labelCount : 0, _$functionClassMethod : function() { var _$self = function(args) { if (args !== null || arguments.length > 1){ args = Array.prototype.slice.call(arguments, 0); } { _$self.drop(args[0], ((args[1]))); return null; } }; return _$self; }, /** @expose */ constructor : function() { this._dropOverlap = (rave.capabilities.extension("position")).drop().remove(false); this._dropOverlap.setOverlapGap(4.0); }, /** * Drop the overlapping labels or reset the overlap. * @param (rave['internal']['Selection']) labels The selector for the labels * @param (boolean) removeOverlap true to remove the overlapping labels, false to reset */ /** @expose */ drop : function(labels, removeOverlap) { if (!(labels.isTransition())) { this.applyLabelDrop(labels, removeOverlap); } else { var steps = [0, 25, 75]; var self = this; (labels).tween("__pointLabelDrop__", function(data, index, groupIndex) { if (index == 0) { return function(t) { var currentStep = Math.floor(t * 100); if (steps.length > 0 && currentStep < 100 && currentStep >= steps[0]) { steps.splice(0, 1); self.applyLabelDrop(labels, removeOverlap); } }; } return null; }); this.labelCount = 0; (labels).each(function(data, index, groupIndex) { ++self.labelCount; }).each("end", function(args) { if (args !== null || arguments.length > 1){ args = Array.prototype.slice.call(arguments, 0); } { if (--self.labelCount == 0) { self.applyLabelDrop(labels, removeOverlap); } return null; } }); } }, applyLabelDrop : function(labels, removeOverlap) { if (removeOverlap) { labels.call(this._dropOverlap); } else { this._dropOverlap.reset(labels); } }, /** @expose */ configureForDataLabels : function(rect) { if (rect) { var ex = [[rect.x, rect.y], [rect.x + rect.width, rect.y + rect.height]]; this._dropOverlap.extent(ex); } this._dropOverlap.noClipping(); } }); /** * Drop overlap extension */ //com_ibm_rave_bundles_utilities_BundleLabelDropper.POSITION_EXTENSION = "position"; /** * space between labels during overlap testing */ com_ibm_rave_bundles_utilities_BundleLabelDropper.OVERLAP_GAP = 4; // $source: com/ibm/rave/bundles/components/StyleStructs /************************************************************************ ** IBM Confidential ** ** IBM Business Analytics: Rapidly Adaptive Visualization Engine ** ** (C) Copyright IBM Corp. 2017 ** ** The source code for this program is not published or otherwise divested of its trade secrets, ** irrespective of what has been deposited with the U.S. Copyright Office. ************************************************************************/ // GENERATED /** * Struct classes to hold style properties. */ var com_ibm_rave_bundles_components_StyleStructs = rave['internal']['Declare']({ }); /** * Filled shape style properties. */ com_ibm_rave_bundles_components_StyleStructs.ShapeStyle = function() { this._fill = null; this._stroke = null; this._strokeWidth = null; }; /** * Line style properties. */ com_ibm_rave_bundles_components_StyleStructs.LineStyle = function() { this._stroke = null; this._strokeWidth = null; this._dashArray = null; }; // $source: com/ibm/rave/bundles/component/GridComponent /************************************************************************ ** IBM Confidential ** ** IBM Business Analytics: Rapidly Adaptive Visualization Engine ** ** (C) Copyright IBM Corp. 2017 ** ** The source code for this program is not published or otherwise divested of its trade secrets, ** irrespective of what has been deposited with the U.S. Copyright Office. ************************************************************************/ // GENERATED /** *

    A component that renders gridlines in an XY axis chart. The {@link #this.type()} method returns "GridComponent".

    The {@link #this.role()} method is used to identify the grid. The return values are defined in {@link (com.ibm.rave.bundles.component.AxisComponent) AxisComponent} : {@link this.AxisComponent#"ROLE_X1"} , {@link this.AxisComponent#"ROLE_Y1"} , and so on.

    */ var com_ibm_rave_bundles_component_GridComponent = rave['internal']['Declare'].implement( /** * @return (String) The role of the grid in the chart */ //role : function() {}, /** * Whether to display the gridlines. * @param (boolean) displayGridlines The new displayGridlines * @return (com.ibm.rave.bundles.component.GridComponent) This component */ //displayGridlines : function(displayGridlines) {}, /** * Set the line styling. Equivalent to calling {@link #this.gridlineColor(String)} and {@link #this.dashArray(String)} . * @param (String) stroke The stroke color * @param (String) dashArray The stroke-dasharray * @return (com.ibm.rave.bundles.component.GridComponent) This component */ //gridlineStyle : function(stroke, dashArray) {}, /** * The color used to draw the gridlines. * @param (String) gridlineColor The new stroke color * @return (com.ibm.rave.bundles.component.GridComponent) This component */ //gridlineColor : function(gridlineColor) {}, /** * The dashing used to draw the gridlines. The argument is a string, giving a comma-separated list of numbers as used with the SVG "stroke-dasharray" style. * @param (String) dashArray The new dash array * @return (com.ibm.rave.bundles.component.GridComponent) This component */ //dashArray : function(dashArray) {} ); /** * The string returned by {@link #this.type()} is "GridComponent". */ /** @expose */ com_ibm_rave_bundles_component_GridComponent.COMPONENT_TYPE = "GridComponent"; // $source: com/ibm/rave/bundles/components/IntervalDataUtilities /************************************************************************ ** IBM Confidential ** ** IBM Business Analytics: Rapidly Adaptive Visualization Engine ** ** (C) Copyright IBM Corp. 2017 ** ** The source code for this program is not published or otherwise divested of its trade secrets, ** irrespective of what has been deposited with the U.S. Copyright Office. ************************************************************************/ // GENERATED /** * A structure for holding interval data (IntervalData}, and utilities for building an array of the data from the tabular data and accessors objects. The array has one entry per entry in the tabular data, and the array entries are in the same order as the datum rows for joining by selectors. */ var com_ibm_rave_bundles_components_IntervalDataUtilities = rave['internal']['Declare']({ }); /** *

    Create intervals for a simple bar chart. The intervals come directly from the data, with the independent interval the independent value (for both ends) and the dependent interval 0.0 to the dependent value. The group and label are copied from the datum. The callout independent is the independent value, and the callout dependent is the dependent value (the bar extent).

    If the xScale is non-null and returns null for an independent (X) value, the data is skipped.

    * @param (Array) data Data array * @param (rave['internal']['SingleValueFunction']) x X accessor, should not be null * @param (rave['internal']['SingleValueFunction']) xScale Function to check if the X value is valid * @param (rave['internal']['SingleValueFunction']) y Y accessor, should not be null * @param (rave['internal']['SingleValueFunction']) color Color accessor, may be null * @param (rave['internal']['SingleValueFunction']) label Label accessor, may be null * @return (Array) Array of intervals for the data */ /** @expose */ com_ibm_rave_bundles_components_IntervalDataUtilities.simpleBars = function(data, x, xScale, y, yStart, color, label) { var result = []; if (!data || data.length == 0 || !x || !y) { return result; } data.forEach(function(d, ix, list) { var xv = x(d); if (xv != null && (!xScale || xScale(xv) != null)) { var yv = y(d); var yvStart = !yStart ? 0 : yStart(d); if (yv != null && yvStart != null) { var r = new com_ibm_rave_bundles_components_IntervalDataUtilities.IntervalData(); r.key = ix; r.ind1 = xv; r.ind2 = r.ind1; r.cind = r.ind1; r.dep1 = yvStart; r.dep2 = yv; r.cdep = r.dep2; r.color = color ? color(d) : null; r.label = label ? label(d) : null; r.value = r.dep2; r._originalData = d; r.valueAsPercentOfCategory = 100; result.push(r); } } return null; }); var sum = 0; for (var i = 0; i < result.length; ++i) { var iData = result[i]; var value = + (iData.value); sum += Math.abs(value); } if (sum != 0) { for (var i = 0; i < result.length; ++i) { var iData = result[i]; var value = + (iData.value); iData.valueAsPercentOfColor = value / sum * 100; } } return result; }; /** * Create intervals for bars in a clustered chart. This is similar to the simple bars, except the independent values are an array of accessors. * @param (Array) data Data array * @param (Array) x Independent accessor array, should not be null and no entries should be null * @param (Array) xScale Array of possibly-null functions to check if X values are in domain; array should not be null, and should be same length as x * @param (rave['internal']['SingleValueFunction']) y Dependent accessor, should not be null * @param (rave['internal']['SingleValueFunction']) color Color accessor, may be null * @param (rave['internal']['SingleValueFunction']) label Label accessor, may be null * @return (Array) Array of intervals for the data */ /** @expose */ com_ibm_rave_bundles_components_IntervalDataUtilities.clusteredBars = function(data, x, xScale, y, yStart, color, label) { var result = []; if (!data || data.length == 0 || !x || x.length == 0 || !y) { return result; } var len = x.length; var categories = {}; var colors = {}; data.forEach(function(d, ix, list) { var OK = true; var ind = []; for (var i = 0; i < len; ++i) { var xv = x[i](d); if (xv == null || (xScale[i] && xScale[i](xv) == null)) { OK = false; break; } ind.push(xv); if (i == 0) { if (!(categories.hasOwnProperty(xv))) { categories[""+(xv)] = 1; } } else if (!(colors.hasOwnProperty(xv))) { colors[""+(xv)] = 1; } } var dep = y(d); var depStart = !yStart ? 0 : yStart(d); if (OK && dep != null && depStart != null) { var r = new com_ibm_rave_bundles_components_IntervalDataUtilities.IntervalData(); r.key = ix; r.ind1 = ind; r.ind2 = ind; r.cind = ind; r.dep1 = depStart; r.dep2 = dep; r.cdep = r.dep2; r.color = color ? color(d) : null; r.label = label ? label(d) : null; r.value = r.dep2; r._originalData = d; result.push(r); } return null; }); for (var __i_enFor0 = 0, __exp_enFor0 = Object.keys(categories), __len_enFor0 = __exp_enFor0.length; __i_enFor0 < __len_enFor0; ++__i_enFor0) { var o = __exp_enFor0[__i_enFor0]; var s = ""+(o); var sum = 0; for (var i = 0; i < result.length; ++i) { var iData = result[i]; if (s == (iData.ind1)[0]) { var value = + (iData.value); sum += Math.abs(value); } } if (sum == 0) { continue; } for (var i = 0; i < result.length; ++i) { var iData = result[i]; if (s == (iData.ind1)[0]) { var value = + (iData.value); iData.valueAsPercentOfCategory = value / sum * 100; } } } for (var __i_enFor1 = 0, __exp_enFor1 = Object.keys(colors), __len_enFor1 = __exp_enFor1.length; __i_enFor1 < __len_enFor1; ++__i_enFor1) { var o = __exp_enFor1[__i_enFor1]; var s = ""+(o); var sum = 0; for (var i = 0; i < result.length; ++i) { var iData = result[i]; if (s == iData.color) { var value = + (iData.value); sum += Math.abs(value); } } if (sum == 0) { continue; } for (var i = 0; i < result.length; ++i) { var iData = result[i]; if (s == iData.color) { var value = + (iData.value); iData.valueAsPercentOfColor = value / sum * 100; } } } return result; }; /** * Create intervals for an stacked bar chart. The data is formed into stacks by the unique values of the independent data. The independent interval is the independent value (for both ends), and the dependent interval is from the stacking with the extent equal to the dependent value. The callout independent is the independent value, and the callout dependent is the dependent value (the bar extent). If percent is true, the bars are rescaled so the total height of each stack is 1.0. If xScale is non-null and returns null for an x value, that bar is skipped. * @param (Array) data Data array * @param (rave['internal']['SingleValueFunction']) x Independent accessor, should not be null * @param (rave['internal']['SingleValueFunction']) xScale Possibly-null function to check if X values are in domain * @param (rave['internal']['SingleValueFunction']) y Dependent accessor, should not be null * @param (rave['internal']['SingleValueFunction']) color Color accessor, may be null * @param (rave['internal']['SingleValueFunction']) label Label accessor, may be null * @param (boolean) percent If true, create percent bars * @return (Array) Array of intervals for the data */ /** @expose */ com_ibm_rave_bundles_components_IntervalDataUtilities.stackedBars = function(data, x, xScale, y, color, label, percent) { var result = []; if (!data || data.length == 0 || !x || !y) { return result; } var stacks = {}; var categories = {}; var colors = {}; data.forEach(function(d, ix, list) { var xv = x(d); if (xv != null && (!xScale || xScale(xv) != null)) { var yv = y(d); if (yv != null) { var stack = stacks[xv]; if (!stack) { stack = new com_ibm_rave_bundles_components_IntervalDataUtilities.Stack(); stacks[xv] = stack; } var dVal = + (yv); if (!percent) { var r = new com_ibm_rave_bundles_components_IntervalDataUtilities.IntervalData(); r.key = ix; r.ind1 = xv; r.ind2 = xv; r.cind = xv; var sum = dVal < 0.0 ? stack.negativeSum : stack.positiveSum; r.dep1 = sum; r.dep2 = sum + dVal; r.cdep = r.dep2; r.color = color ? color(d) : null; r.label = label ? label(d) : null; r.value = dVal; r._originalData = d; result.push(r); } if (dVal < 0.0) { stack.negativeSum += dVal; } else { stack.positiveCount++; stack.positiveSum += dVal; } if (!(categories.hasOwnProperty(xv))) { categories[""+(xv)] = 1; } if (color) { var o = color(d); if ((o != null) && !(colors.hasOwnProperty(o))) { colors[""+(o)] = 1; } } } } return null; }); if (percent) { data.forEach(function(d, ix, list) { var xv = x(d); if (xv != null && (!xScale || xScale(xv) != null)) { var yv = y(d); if (yv != null) { var stack = stacks[xv]; var dVal = + (yv); var percent; if (dVal < 0.0) { percent = -100.0 * dVal / stack.negativeSum; } else if (stack.positiveSum > 0) { percent = 100.0 * dVal / stack.positiveSum; } else { percent = 100.0 / stack.positiveCount; } var r = new com_ibm_rave_bundles_components_IntervalDataUtilities.IntervalData(); r.key = ix; r.ind1 = xv; r.ind2 = xv; r.cind = xv; var sum = dVal < 0.0 ? stack.negativePercent : stack.positivePercent; r.dep1 = sum; r.dep2 = sum + percent; r.cdep = r.dep2; r.color = color ? color(d) : null; r.label = label ? label(d) : null; r.value = dVal; r.valueAsPercentOfCategory = percent; r._originalData = d; result.push(r); if (dVal < 0.0) { stack.negativePercent += percent; } else { stack.positivePercent += percent; } } } return null; }); } else { for (var __i_enFor0 = 0, __exp_enFor0 = Object.keys(categories), __len_enFor0 = __exp_enFor0.length; __i_enFor0 < __len_enFor0; ++__i_enFor0) { var o = __exp_enFor0[__i_enFor0]; var s = ""+(o); var sum = 0; for (var i = 0; i < result.length; ++i) { var iData = result[i]; if (s == iData.ind1) { var value = + (iData.value); sum += Math.abs(value); } } if (sum == 0) { continue; } for (var i = 0; i < result.length; ++i) { var iData = result[i]; if (s == iData.ind1) { var value = + (iData.value); iData.valueAsPercentOfCategory = value / sum * 100; } } } } for (var __i_enFor1 = 0, __exp_enFor1 = Object.keys(colors), __len_enFor1 = __exp_enFor1.length; __i_enFor1 < __len_enFor1; ++__i_enFor1) { var o = __exp_enFor1[__i_enFor1]; var s = ""+(o); var sum = 0; for (var i = 0; i < result.length; ++i) { var iData = result[i]; if (s == iData.color) { var value = + (iData.value); sum += Math.abs(value); } } if (sum == 0) { continue; } for (var i = 0; i < result.length; ++i) { var iData = result[i]; if (s == iData.color) { var value = + (iData.value); iData.valueAsPercentOfColor = value / sum * 100; } } } return result; }; /** * Structure class holding interval information. */ com_ibm_rave_bundles_components_IntervalDataUtilities.IntervalData = rave['internal']['Declare']({ /** * Key value; for now this is the data index */ /** @expose */ key : null, /** * First independent value */ /** @expose */ ind1 : null, /** * Second independent value (in all current uses, same as ind1) */ /** @expose */ ind2 : null, /** * First dependent value */ /** @expose */ dep1 : null, /** * Second dependent value */ /** @expose */ dep2 : null, /** * The data value that the interval represents. Not the pixel value. Used in stacked chart */ /** @expose */ value : null, /** * Color value */ /** @expose */ color : null, /** * Label value */ /** @expose */ label : null, /** * Callout independent value (in all current uses, same as ind1) */ /** @expose */ cind : null, /** * Callout dependent value (dependent extent) */ /** @expose */ cdep : null, /** @expose */ _originalData : null, /** * The data value (in percentage) for specific category */ /** @expose */ valueAsPercentOfCategory : NaN, /** * The data value (in percentage) across all categories */ /** @expose */ valueAsPercentOfColor : NaN, /** @expose */ originalData : function() { return this._originalData; }, /** @expose */ originalDataList : function() { var list = []; list.push(this._originalData); return list; } }); com_ibm_rave_bundles_components_IntervalDataUtilities.Stack = function() { this.positiveCount = 0; this.positiveSum = 0; this.negativeSum = 0; this.positivePercent = 0; this.negativePercent = 0; }; /** * Accessor for the callout dependent value */ /** @expose */ com_ibm_rave_bundles_components_IntervalDataUtilities.CALLOUT_DEPENDENT_ACCESSOR = function(data) { return (data).cdep; }; /** * Accessor for the callout independent value */ /** @expose */ com_ibm_rave_bundles_components_IntervalDataUtilities.CALLOUT_INDEPENDENT_ACCESSOR = function(data) { return (data).cind; }; /** * Accessor for the data value */ /** @expose */ com_ibm_rave_bundles_components_IntervalDataUtilities.VALUE_ACCESSOR = function(data) { return (data).value; }; /** * Accessor for data value as percent of category */ /** @expose */ com_ibm_rave_bundles_components_IntervalDataUtilities.PERCENT_OF_CATEGORY_ACCESSOR = function(data) { var percent = (data).valueAsPercentOfCategory; return isNaN(percent) ? "" : percent.toFixed(1) + "%"; }; /** * Accessor for data value as percent of color (series) */ /** @expose */ com_ibm_rave_bundles_components_IntervalDataUtilities.PERCENT_OF_COLOR_ACCESSOR = function(data) { var percent = (data).valueAsPercentOfColor; return isNaN(percent) ? "" : percent.toFixed(1) + "%"; }; // $source: com/ibm/rave/bundles/data/PointDataUtilities /************************************************************************ ** IBM Confidential ** ** IBM Business Analytics: Rapidly Adaptive Visualization Engine ** ** (C) Copyright IBM Corp. 2017 ** ** The source code for this program is not published or otherwise divested of its trade secrets, ** irrespective of what has been deposited with the U.S. Copyright Office. ************************************************************************/ // GENERATED /** * Utility class for building arrays of point datum objects from tabular data. */ var com_ibm_rave_bundles_data_PointDataUtilities = rave['internal']['Declare']({ }); /** *

    Filter the input data list-array and return a list-array of PointData objects in the same order. If the data is null, an empty list is returned. Any null object in the data is skipped.

    If an accessor is null, the X or Y value in the returned PointData objects is always null. If the accessor is non-null, points for which the accessor returns null are not included in the result; if the scale is also non-null, points for which the scale applied to the value returns null are not included in the result.

    The returned PointDatum objects have the X accessor and Y accessor values (so may be null), and the original datum set to the object from the data.

    * @param (Array) data Input data, list of arbitrary objects * @param (rave['internal']['SingleValueFunction']) xAccessor X accessor function, may be null * @param (rave['internal']['SingleValueFunction']) xScale Scale to test if the X value should be included, may be null * @param (rave['internal']['SingleValueFunction']) yAccessor Y accessor function, may be null * @param (rave['internal']['SingleValueFunction']) yScale Scale to test if the Y value should be included, may be null * @return (Array) List of PointData objects */ /** @expose */ com_ibm_rave_bundles_data_PointDataUtilities.buildPoints = function(data, xAccessor, xScale, yAccessor, yScale) { var result = []; if (data) { for (var __i_enFor0 = 0, __exp_enFor0 = data, __len_enFor0 = __exp_enFor0.length; __i_enFor0 < __len_enFor0; ++__i_enFor0) { var o = __exp_enFor0[__i_enFor0]; if (o != null) { var xv = null; if (xAccessor) { xv = xAccessor(o); if (xv == null || (xScale && xScale(xv) == null)) { continue; } } var yv = null; if (yAccessor) { yv = yAccessor(o); if (yv == null || (yScale && yScale(yv) == null)) { continue; } } var datum = new com_ibm_rave_bundles_data_PointDataUtilities.PointDatum(); datum._x = xv; datum._y = yv; datum._originalData = o; result.push(datum); } } } return result; }; /** * Datum object representing a point with X and Y values. Either X or Y may be null, depending on how the point is used, for example in a scatterplot. */ com_ibm_rave_bundles_data_PointDataUtilities.PointDatum = rave['internal']['Declare']({ /** * The X value */ /** @expose */ _x : null, /** * The Y value */ /** @expose */ _y : null, /** * The data value (in percentage) that the point represents */ /** @expose */ _yAsPercentOfCategory : null, /** * The data value (in percentage) that the point represents */ /** @expose */ _yAsPercentOfColor : null, /** * The original data */ /** @expose */ _originalData : null, /** @expose */ originalData : function() { return this._originalData; }, /** @expose */ originalDataList : function() { var list = []; list.push(this._originalData); return list; } }); /** * Accessor returning the _x property of a PointDatum. */ /** @expose */ com_ibm_rave_bundles_data_PointDataUtilities.X_ACCESSOR = function(d) { return (d)._x; }; /** * Accessor returning the _y property of a PointDatum. */ /** @expose */ com_ibm_rave_bundles_data_PointDataUtilities.Y_ACCESSOR = function(d) { return (d)._y; }; /** * Accessor returning the _yAsPercentOfCategory property of a PointDatum. */ /** @expose */ com_ibm_rave_bundles_data_PointDataUtilities.PERCENT_OF_CATEGORY_ACCESSOR = function(d) { var percent = + ((d)._yAsPercentOfCategory); return isNaN(percent) ? "" : percent.toFixed(1) + "%"; }; /** * Accessor returning the _yAsPercentOfColor property of a PointDatum. */ /** @expose */ com_ibm_rave_bundles_data_PointDataUtilities.PERCENT_OF_COLOR_ACCESSOR = function(d) { var percent = + ((d)._yAsPercentOfColor); return isNaN(percent) ? "" : percent.toFixed(1) + "%"; }; // $source: com/ibm/rave/bundles/utilities/ColorUtil /************************************************************************ ** IBM Confidential ** ** IBM Business Analytics: Rapidly Adaptive Visualization Engine ** ** (C) Copyright IBM Corp. 2017 ** ** The source code for this program is not published or otherwise divested of its trade secrets, ** irrespective of what has been deposited with the U.S. Copyright Office. ************************************************************************/ // GENERATED var com_ibm_rave_bundles_utilities_ColorUtil = rave['internal']['Declare']({ }); /** * It is used to get a foreground color which has atleast a 4.5 contrast ratio with the background color. * @param (Object) bg bakground color * @param (Object) fg foreground color * @return (Object) a color ( darker/ligher/same fg color ) which contrast with background. */ com_ibm_rave_bundles_utilities_ColorUtil.getContrastColor$0 = function(bg, fg) { var contrastRatio = com_ibm_rave_bundles_utilities_ColorUtil.getContrastRatio(bg, fg); if (contrastRatio < 4.5) { var bgHSL = rave.hsl(bg); var fgHSL = rave.hsl(fg); var brightness = 0.33 * (rave.rgb(bg).getR() / 255.0) + 0.5 * (rave.rgb(bg).getG() / 255.0) + 0.16 * (rave.rgb(bg).getB() / 255.0); if (brightness > 0.5) { if (bgHSL.getL() > 0.5) { return rave.hsl(fgHSL.getH(), fgHSL.getS(), Math.min(fgHSL.getL(), bgHSL.getL() - 0.4)); } else { return rave.hsl(fgHSL.getH(), fgHSL.getS(), Math.min(fgHSL.getL(), 0.1)); } } else { if (bgHSL.getL() < 0.5) { return rave.hsl(fgHSL.getH(), fgHSL.getS(), Math.max(fgHSL.getL(), bgHSL.getL() + 0.4)); } else { return rave.hsl(fgHSL.getH(), fgHSL.getS(), Math.max(fgHSL.getL(), 0.9)); } } } return fg; }; com_ibm_rave_bundles_utilities_ColorUtil.getContrastColor$1 = function(labelColor) { var labelRGB = rave.rgb(labelColor); return labelRGB.contrastShift(21); }; /** @expose */ com_ibm_rave_bundles_utilities_ColorUtil.getContrastRatio = function(colorA, colorB) { var foregroundLuminance = rave.rgb(colorA).getLuminance(); var backgroundLuminance = rave.rgb(colorB).getLuminance(); var contrastRatio = (foregroundLuminance >= backgroundLuminance) ? (foregroundLuminance + 0.05) / (backgroundLuminance + 0.05) : (backgroundLuminance + 0.05) / (foregroundLuminance + 0.05); return contrastRatio; }; /** @expose */ com_ibm_rave_bundles_utilities_ColorUtil.getContrastColor = function(a0, a1) { var args = arguments; if (args.length == 1) { return com_ibm_rave_bundles_utilities_ColorUtil.getContrastColor$1(a0); } return com_ibm_rave_bundles_utilities_ColorUtil.getContrastColor$0(a0, a1); }; // $source: com/ibm/rave/bundles/component/IntervalComponent /************************************************************************ ** IBM Confidential ** ** IBM Business Analytics: Rapidly Adaptive Visualization Engine ** ** (C) Copyright IBM Corp. 2017 ** ** The source code for this program is not published or otherwise divested of its trade secrets, ** irrespective of what has been deposited with the U.S. Copyright Office. ************************************************************************/ // GENERATED /** *

    A component that renders interval elements (rectangles based on data, showing an extent in both X and Y dimensions, as in a bar chart). The {@link #this.type()} method returns "IntervalComponent".

    */ var com_ibm_rave_bundles_component_IntervalComponent = rave['internal']['Declare'].implement( /** * Turn labels on or off. If labels are on but there is no label data, empty text nodes will be created. * @param (boolean) itemLabel Whether to use labels * @return (com.ibm.rave.bundles.component.IntervalComponent) This object */ //itemLabel : function(itemLabel) {}, /** * @param (boolean) _itemOverlap Whether to show/hide overlap labels * @return (com.ibm.rave.bundles.component.IntervalComponent) This object */ //itemOverlap : function(_itemOverlap) {}, /** * Sets function that will specify position of item label for given chart element. * @param (rave['internal']['ValueFunction']) labelPosition Function to be used to determine label position * @return (com.ibm.rave.bundles.component.IntervalComponent) This object */ //itemLabelPosition : function(labelPosition) {}, /** * Set the border width, which is also the stroke width. * @param (String) width * @return (com.ibm.rave.bundles.component.IntervalComponent) This object */ //borderWidth : function(width) {}, /** * Set the border color. * @param (String) borderColor * @return (com.ibm.rave.bundles.component.IntervalComponent) This object */ //borderColor : function(borderColor) {}, /** * Set the classname of the labellayer * @param (String) string * @return (com.ibm.rave.bundles.component.IntervalComponent) This object */ //labelLayerClassName : function(string) {}, /** * Set the classname of the elementlayer * @param (String) string * @return (com.ibm.rave.bundles.component.IntervalComponent) This object */ //elementLayerClassName : function(string) {}, /** * @param bounds The bounds of the chart area. */ //bounds : function(chartRect) {} ); /** * The string returned by {@link #this.type()} is "IntervalComponent". */ /** @expose */ com_ibm_rave_bundles_component_IntervalComponent.COMPONENT_TYPE = "IntervalComponent"; // $source: com/ibm/rave/bundles/utilities/LabelStyleUtil /************************************************************************ ** IBM Confidential ** ** IBM Business Analytics: Rapidly Adaptive Visualization Engine ** ** (C) Copyright IBM Corp. 2017 ** ** The source code for this program is not published or otherwise divested of its trade secrets, ** irrespective of what has been deposited with the U.S. Copyright Office. ************************************************************************/ // GENERATED //@import com/ibm/rave/bundles/components/FilterComponentImpl (runtime) // new //@import com/ibm/rave/bundles/utilities/ColorUtil (runtime) // getContrastColor, getContrastRatio /** * This class can be used to apply styles on labels. Eg: when we need to overrule the given label style properties. */ var com_ibm_rave_bundles_utilities_LabelStyleUtil = rave['internal']['Declare']({ //_labelFontStyle : null, //_contrastLabelColorfilter : null, //_sameLabelColorfilter : null, /** * eg: apply contrast label color with background. apply different font size for each level label. apply a contrast shadow for a label. */ //_labelFillColor : null, //_labelFontSize : null, _labelShadow : false, _$functionClassMethod : function() { var _$self = function(args) { if (args !== null || arguments.length > 1){ args = Array.prototype.slice.call(arguments, 0); } { if (_$self._labelFontStyle) { for (var __i_enFor0 = 0, __exp_enFor0 = Object.keys(_$self._labelFontStyle), __len_enFor0 = __exp_enFor0.length; __i_enFor0 < __len_enFor0; ++__i_enFor0) { var stylenName = __exp_enFor0[__i_enFor0]; if ((stylenName == "fill" || stylenName == "color" && _$self._labelFillColor) || (stylenName == "font-size" && _$self._labelFontSize) || (stylenName == "text-shadow" && _$self._labelShadow == true)) { continue; } this.style(stylenName, _$self._labelFontStyle[stylenName]); } } if (_$self._labelFillColor) { this.style("fill", _$self._labelFillColor); } if (_$self._labelFontSize) { this.style("font-size", _$self._labelFontSize); } var labels = this.selectAll("*"); if (labels.length == 0) { labels = this; } if (_$self._labelShadow) { var self = _$self; var defaultLabelFill = _$self.getDefaultLabelColor(_$self._labelFontStyle); _$self._contrastLabelColorfilter = new com_ibm_rave_bundles_components_FilterComponentImpl("contrast_label_drop_shadow"); _$self._contrastLabelColorfilter.setDropshadow("1px", "1px", "0px", rave.rgb(com_ibm_rave_bundles_utilities_ColorUtil.getContrastColor(defaultLabelFill))); _$self._sameLabelColorfilter = new com_ibm_rave_bundles_components_FilterComponentImpl("same_label_drop_shadow"); _$self._sameLabelColorfilter.setDropshadow("1px", "1px", "0px", rave.rgb(defaultLabelFill)); var owner = this.node().rave_getOwner(); rave.select(owner).select("defs").call(_$self._contrastLabelColorfilter); rave.select(owner).select("defs").call(_$self._sameLabelColorfilter); this.each(function(data, index, groupIndex) { if (self._labelFillColor) { var contrastRatio = com_ibm_rave_bundles_utilities_ColorUtil.getContrastRatio(rave.rgb(self._labelFillColor.call(this, data, index, groupIndex)), defaultLabelFill); if (contrastRatio < 4.5) { this.setAttribute("filter", "url(#" + self._contrastLabelColorfilter.getId() + ")"); } else { this.setAttribute("filter", "url(#" + self._sameLabelColorfilter.getId() + ")"); } } else { this.setAttribute("filter", "url(#" + self._contrastLabelColorfilter.getId() + ")"); } }); labels.each(function(data, index, groupIndex) { if (self._labelFillColor) { this.rave_setProperty("_rave_drop_shadow", "1px 1px 0px " + com_ibm_rave_bundles_utilities_ColorUtil.getContrastColor(self._labelFillColor.call(this, data, index, groupIndex)).toString()); } else { this.rave_setProperty("_rave_drop_shadow", "1px 1px 0px " + com_ibm_rave_bundles_utilities_ColorUtil.getContrastColor(defaultLabelFill).toString()); } }); } else { labels.each(function(data, index, groupIndex) { this.rave_setProperty("_rave_drop_shadow", null); }); this.attr("filter", null); } return null; } }; return _$self; }, /** @expose */ labelFont : function(labelFontStyle) { this._labelFontStyle = labelFontStyle; return this; }, /** @expose */ labelFillColor : function(_labelFillColor) { this._labelFillColor = _labelFillColor; return this; }, /** @expose */ labelFontSize : function(_labelFontSize) { this._labelFontSize = _labelFontSize; return this; }, /** @expose */ labelShadow : function(labelShadow) { this._labelShadow = labelShadow; return this; }, /** @expose */ getDefaultLabelColor : function(_labelStyle) { if (!_labelStyle) { return "#000000"; } var defaultFillColor; if (_labelStyle) { defaultFillColor = _labelStyle["fill"]; if (defaultFillColor == null) { defaultFillColor = _labelStyle["color"]; } } if (defaultFillColor == null) { defaultFillColor = "#000000"; } return defaultFillColor.toString(); } }); // $source: com/ibm/rave/bundles/components/ComponentConfiguration /************************************************************************ ** IBM Confidential ** ** IBM Business Analytics: Rapidly Adaptive Visualization Engine ** ** (C) Copyright IBM Corp. 2017 ** ** The source code for this program is not published or otherwise divested of its trade secrets, ** irrespective of what has been deposited with the U.S. Copyright Office. ************************************************************************/ // GENERATED /** * Utility class that does configuration for components, optionally drawing them into selections. Some of the configuration information is taken from a bundle context, and uses standard property IDs as defined in the shared property files and {@link (rave['library']['internal']['CommonPropertyIDs']) CommonPropertyIDs} . If a bundle does not use define the expected properties, an error will occur. In this documentation the property ID is referred to by the CommonPropertyIDs constant, for example property LEGEND_DISPLAY means the property with the ID {@link this.CommonPropertyIDs#"legend.display"} . */ var com_ibm_rave_bundles_components_ComponentConfiguration = rave['internal']['Declare']({ //constructor : function() {} }); /** *

    Do "standard" configuration of a Zoom and optionally run it on a selection. If the provided Zoom is null a new one is created. Component properties are set as follows:

    Note that it is not possible to remove a scale from an existing zoom, since the core Zoom does not allow null scales in the x() and y() methods. To do that, first disable any existing zoom (with Selector#on("zoom",null)) then call this method with a null Zoom.

    The scales are ordered x, y, x2, y2 in the parameters and in the p and s arrays, since most charts will only have the x and y scales.

    * @param (rave['internal']['Selection']) chart Selection on which to run the zoom, may be null * @param (rave['internal']['Zoom']) zoom The Zoom; if null one is created and returned * @param (rave['library']['internal']['CoordinateScaleImpl']) xScale X dimension scale, may be null * @param (rave['library']['internal']['CoordinateScaleImpl']) yScale Y dimension scale, may be null * @param (rave['library']['internal']['CoordinateScaleImpl']) x2Scale X2 dimension scale, may be null * @param (rave['library']['internal']['CoordinateScaleImpl']) y2Scale Y2 dimension scale, may be null * @param (Array) scaleExtent Scale extent, may be null; if null the range 0.2 to 5.0 is used * @param (rave['internal']['RectStruct']) chartRect The rectangle of the chart * @param (double[]) p the zoom translate position (x, y, x2, y2) * @param (double[]) s the zoom scale (x, y, x2, y2) * @param (String) zoomOps The zoom operation (x|y|x2|y2|all) * @param (rave['internal']['RunFunction']) callback Callback on each zoom event, must not be null * @return (rave['internal']['Zoom']) The zoom */ /** @expose */ com_ibm_rave_bundles_components_ComponentConfiguration.configureZoom = function(chart, zoom, xScale, yScale, x2Scale, y2Scale, scaleExtent, chartRect, p, s, zoomOps, callback) { var z = zoom ? zoom : rave.behavior.zoom(); var z1 = (x2Scale || y2Scale) && zoomOps == "all" ? rave.behavior.zoom() : null; var dummyScale = (rave.scale.linear()); z.x(dummyScale); z.y(dummyScale); if (xScale && zoomOps == "x") { z.x(xScale.scale()); z.scale(s[0]); z.translate([p[0], 0]); } if (yScale && zoomOps == "y") { z.y(yScale.scale()); z.scale(s[1]); z.translate([0, p[1]]); } if (x2Scale && zoomOps == "x2") { z.x(x2Scale.scale()); z.scale(s[2]); z.translate([p[2], 0]); } if (y2Scale && zoomOps == "y2") { z.y(y2Scale.scale()); z.scale(s[3]); z.translate([0, p[3]]); } if (zoomOps == "all") { if (xScale) { z.x(xScale.scale()); } if (yScale) { z.y(yScale.scale()); } z.scale(1); z.translate([0, 0]); if (z1) { if (x2Scale) { z1.x(x2Scale.scale()); } if (y2Scale) { z1.y(y2Scale.scale()); } z1.scale(1); z1.translate([0, 0]); } } z.scaleExtent(scaleExtent ? scaleExtent : [1, Infinity]).on("zoom.default", function(args) { if (args !== null || arguments.length > 1){ args = Array.prototype.slice.call(arguments, 0); } { var event = args[3]; var scale = event.scale; var translate = event.translate; var scaledX = chartRect.x * (scale - 1); var scaledXExtent = (chartRect.width * (1 - scale)) - scaledX; translate[0] = Math.min(-scaledX, Math.max(scaledXExtent, translate[0])); var scaledY = chartRect.y * (scale - 1); var scaledYExtent = (chartRect.height * (1 - scale)) - scaledY; translate[1] = Math.min(-scaledY, Math.max(scaledYExtent, translate[1])); z.translate([translate[0], translate[1]]); if (z1) { z1.translate([translate[0], translate[1]]); z1.scale(scale); } if (zoomOps == "x") { p[0] = translate[0]; s[0] = scale; } else if (zoomOps == "y") { p[1] = translate[1]; s[1] = scale; } else if (zoomOps == "x2") { p[2] = translate[0]; s[2] = scale; } else if (zoomOps == "y2") { p[3] = translate[1]; s[3] = scale; } else if (zoomOps == "all") { p[0] = translate[0]; p[1] = translate[1]; p[2] = translate[0]; p[3] = translate[1]; s[0] = scale; s[1] = scale; s[2] = scale; s[3] = scale; } return callback.apply(this, args); } }); return z; }; // $source: com/ibm/rave/bundles/internal/nativeImpl/BundleModule /************************************************************************ ** IBM Confidential ** ** IBM Business Analytics: Rapidly Adaptive Visualization Engine ** ** (C) Copyright IBM Corp. 2015 ** ** The source code for this program is not published or otherwise divested of its trade secrets, ** irrespective of what has been deposited with the U.S. Copyright Office. ************************************************************************/ // Must be the first import // @import ./BundleModuleHeader // expose DataFormatter to the global variable rave //rave["library"]["CustomFormatter"]=com_ibm_rave_library_framework_CustomFormatter; // $source: com/ibm/rave/bundles/columnBundle/ColumnBundle /************************************************************************ ** IBM Confidential ** ** IBM Business Analytics: Rapidly Adaptive Visualization Engine ** ** (C) Copyright IBM Corp. 2017 ** ** The source code for this program is not published or otherwise divested of its trade secrets, ** irrespective of what has been deposited with the U.S. Copyright Office. ************************************************************************/ // GENERATED //@import com/ibm/rave/library/Library (static) // Library //@import com/ibm/rave/bundles/RaveBundle (loadtime) // superclass //@import com/ibm/rave/bundles/columnBundle/ColumnView (runtime) // new var com_ibm_rave_bundles_columnBundle_ColumnBundle = rave['internal']['Declare'](com_ibm_rave_bundles_RaveBundle, { /** @expose */ getName : function() { return com_ibm_rave_bundles_columnBundle_ColumnBundle.BUNDLE_NAME; }, /** @expose */ createView : function(ctx) { return new com_ibm_rave_bundles_columnBundle_ColumnView(ctx); } //constructor : function() {} }); /** * Register the bundle factory with the library. The bundle will not be made available if this method is not called. */ /** @expose */ com_ibm_rave_bundles_columnBundle_ColumnBundle.init = function() { if (!(com_ibm_rave_library_Library.bundle.isRegistered(com_ibm_rave_bundles_columnBundle_ColumnBundle.BUNDLE_NAME))) { var bundle; com_ibm_rave_library_Library.bundle.extension(com_ibm_rave_bundles_columnBundle_ColumnBundle.BUNDLE_NAME, function() { if (!bundle) { bundle = new com_ibm_rave_bundles_columnBundle_ColumnBundle(); bundle.loadResources(); require("./vizlibrary-column.css"); } return bundle; }); } return com_ibm_rave_bundles_columnBundle_ColumnBundle.BUNDLE_NAME; }; com_ibm_rave_bundles_columnBundle_ColumnBundle.BUNDLE_NAME = "columnBundle"; // Auto initialization com_ibm_rave_bundles_columnBundle_ColumnBundle.init(); if (!com_ibm_rave_library_Library.bundle[com_ibm_rave_bundles_columnBundle_ColumnBundle.BUNDLE_NAME]) { com_ibm_rave_library_Library.bundle[com_ibm_rave_bundles_columnBundle_ColumnBundle.BUNDLE_NAME] = function() { if (!bundle) { bundle = new com_ibm_rave_bundles_columnBundle_ColumnBundle(); bundle.loadResources(); require("./vizlibrary-column.css"); } return bundle; }; } else { console.log("Could not register extension: ColumnBundle"); } // $source: com/ibm/rave/bundles/views/AbstractColumnView /************************************************************************ ** IBM Confidential ** ** IBM Business Analytics: Rapidly Adaptive Visualization Engine ** ** (C) Copyright IBM Corp. 2017 ** ** The source code for this program is not published or otherwise divested of its trade secrets, ** irrespective of what has been deposited with the U.S. Copyright Office. ************************************************************************/ // GENERATED //@import com/ibm/rave/bundles/views/BundleView (loadtime) // superclass //@import com/ibm/rave/bundles/components/IntervalComponentImpl (runtime) // new //@import com/ibm/rave/bundles/components/IntervalDataUtilities (runtime) // IntervalDataUtilities, simpleBars, clusteredBars, stackedBars //@import com/ibm/rave/library/Library (runtime) // logError //@import com/ibm/rave/bundles/utilities/FontPropertyParser (runtime) // parseCSSFont /** * An abstract Column view implementation that contains code common to 'column'-like charts. For instance a composite (column/line) chart will also use this functionality. */ var com_ibm_rave_bundles_views_AbstractColumnView = rave['internal']['Declare'](com_ibm_rave_bundles_views_BundleView, { /** @expose */ datasetId : null, /** * Interval component, created in setup */ /** @expose */ _intervalComponent : null, /** @expose */ constructor : function(context) { this.datasetId = "data"; }, /** @expose */ setup : function() { com_ibm_rave_bundles_views_BundleView.prototype.setup.call(this); this._intervalComponent = new com_ibm_rave_bundles_components_IntervalComponentImpl(); this._intervalComponent.keyAccessor(function(data) { return (data).key; }).independent1Accessor(function(data) { return (data).ind1; }).independent2Accessor(function(data) { return (data).ind2; }).dependent1Accessor(function(data) { return (data).dep1; }).dependent2Accessor(function(data) { return (data).dep2; }).valueAccessor(com_ibm_rave_bundles_components_IntervalDataUtilities.VALUE_ACCESSOR); }, /** @expose */ dataValid : function() { if (!(this.dataModel.validate())) { return false; } var dataHandling = this.getStringProperty("data.handling"); var dataSet = this.dataModel.dataset(this.datasetId); var yAccessor = dataSet.slot("y").entry(); var yStart = dataSet.slot("yStart"); var yStartAccessor = yStart ? yStart.entry() : null; if (dataHandling == "Stacked" || dataHandling == "Stacked100") { if (yStartAccessor || yAccessor.type() == "date") { com_ibm_rave_library_Library.logError(408, "Column chart isn't stackable when ystart is defined or y is date"); return false; } } if (yStartAccessor && !(yStartAccessor.type() == yAccessor.type())) { com_ibm_rave_library_Library.logError(409, "y and ystart slot must have the same data type in Column data"); return false; } return true; }, /** * Convert data model into array of IntervalData structures, based on the group handling. See {@link (com.ibm.rave.bundles.components.IntervalDataUtilities) IntervalDataUtilities} . * @return (Array) Array of intervals */ /** @expose */ makeData : function(dataModel, _data) { if (!_data || _data.length == 0) { return []; } var dataSet = dataModel.dataset(this.datasetId); var xAccessor = dataSet.slot("x").entry(); var yAccessor = dataSet.slot("y").entry(); var colorAccessor = dataSet.slot("color").entry(); var labelAccessor = dataSet.slot("label").entry(); var yStart = dataSet.slot("yStart"); var yStartAccessor = yStart ? yStart.entry() : null; var dataHandling = this.getStringProperty("data.handling"); if ("Clustered" == dataHandling && colorAccessor) { return com_ibm_rave_bundles_components_IntervalDataUtilities.clusteredBars(_data, [xAccessor, colorAccessor], [rave['library']['internal']['AbstractView'].domainCheckerOf(_data, xAccessor), rave['library']['internal']['AbstractView'].domainCheckerOf(_data, colorAccessor)], yAccessor, yStartAccessor, colorAccessor, labelAccessor); } if ("Stacked" == dataHandling) { return com_ibm_rave_bundles_components_IntervalDataUtilities.stackedBars(_data, xAccessor, rave['library']['internal']['AbstractView'].domainCheckerOf(_data, xAccessor), yAccessor, colorAccessor, labelAccessor, false); } if ("Stacked100" == dataHandling) { return com_ibm_rave_bundles_components_IntervalDataUtilities.stackedBars(_data, xAccessor, rave['library']['internal']['AbstractView'].domainCheckerOf(_data, xAccessor), yAccessor, colorAccessor, labelAccessor, true); } return com_ibm_rave_bundles_components_IntervalDataUtilities.simpleBars(_data, xAccessor, rave['library']['internal']['AbstractView'].domainCheckerOf(_data, xAccessor), yAccessor, yStartAccessor, colorAccessor, labelAccessor); }, /** @expose */ configureDataLabels : function(dataSet, colorDataSlotEntry) { if (!(this.isShowDataLabels())) { this._intervalComponent.itemLabel(false); this._intervalComponent.itemLabelPosition(null); this._intervalComponent.labelFont(null); this._intervalComponent.labelAccessor(null); this._intervalComponent.labelFormatter(null); return; } var dataHandling = this.getStringProperty("data.handling"); var isStacked = (colorDataSlotEntry) && ("Stacked" == dataHandling || "Stacked100" == dataHandling); var dataLabelPosition = function(data, index, groupIndex) { if (isStacked) { return 1; } else { var iData = data; var value = + (iData.value); return (value >= 0) ? 0 : 2; } }; var labelAccessor = this.getlDataLabelAccessor(dataSet, "label", true); var labelEntry = this.getEntryForDataLabelFormatter(dataSet, "label", "y"); this._intervalComponent.itemLabel(true); this._intervalComponent.itemOverlap(true); this._intervalComponent.itemLabelPosition(dataLabelPosition); var labelFontStyle = com_ibm_rave_bundles_utilities_FontPropertyParser.parseCSSFont(this.getStringProperty("labelstyle.font")); if (!isStacked) { labelFontStyle = this.getBackgroundConstrastLabelStyle(); } this._intervalComponent.labelFont(labelFontStyle); this._intervalComponent.labelAccessor(labelAccessor); this._intervalComponent.labelContrast(this.getBooleanProperty("contrast.label.color")); this._intervalComponent.labelFormatter(this.context.getCustomFormatterForElementLabels(labelEntry, (dataSet.slot("label").entry()) ? "ROLE_NONE" : "ROLE_Y1")); this._intervalComponent.labelContrast(this.getBooleanProperty("contrast.label.color")); this._intervalComponent.labelShadow(this.getBooleanProperty("label.shadow")); } }); /** @expose */ com_ibm_rave_bundles_views_AbstractColumnView.DATAMODEL_TABULAR = "tabular"; /** @expose */ com_ibm_rave_bundles_views_AbstractColumnView.DATASET_DATA = "data"; /** @expose */ com_ibm_rave_bundles_views_AbstractColumnView.DATASLOT_X = "x"; /** @expose */ com_ibm_rave_bundles_views_AbstractColumnView.DATASLOT_Y = "y"; /** @expose */ com_ibm_rave_bundles_views_AbstractColumnView.DATASLOT_Y_START = "yStart"; /** @expose */ com_ibm_rave_bundles_views_AbstractColumnView.DATASLOT_COLOR = "color"; /** @expose */ com_ibm_rave_bundles_views_AbstractColumnView.DATASLOT_LABEL = "label"; // $source: com/ibm/rave/bundles/columnBundle/ColumnView /************************************************************************ ** IBM Confidential ** ** IBM Business Analytics: Rapidly Adaptive Visualization Engine ** ** (C) Copyright IBM Corp. 2018 ** ** The source code for this program is not published or otherwise divested of its trade secrets, ** irrespective of what has been deposited with the U.S. Copyright Office. ************************************************************************/ // GENERATED //@import com/ibm/rave/bundles/views/AbstractColumnView (loadtime) // superclass //@import com/ibm/rave/bundles/components/AxesManager (runtime) // percentFormat //@import com/ibm/rave/bundles/components/ComponentConfiguration (runtime) // configureZoom /** * Column bundle view using the interval component. */ var com_ibm_rave_bundles_columnBundle_ColumnView = rave['internal']['Declare'](com_ibm_rave_bundles_views_AbstractColumnView, { /** * the color accessor for the palette */ //_colorAccessor : null, /** * Data from last render */ //_data : null, /** * Data from last render, converted to IntervalData */ //intervalData : null, /** * Scales from last render */ //_independentScale : null, //_dependentScale : null, //userKey : null, //zoomXScale : null, //zoomYScale : null, //zoomendedTimer : null, /** * Whether the chart was clustered last render */ _wasClustered : false, /** * Whether the chart was stacked last render */ _wasStacked : false, /** @expose */ constructor : function(context) { this._intervalComponent = null; this._colorAccessor = null; this._data = null; }, /** @expose */ isAxesManagerRequired : function() { return true; }, /** @expose */ setup : function() { com_ibm_rave_bundles_views_AbstractColumnView.prototype.setup.call(this); var style = {}; style["stroke-width"] = "0px"; rave['library']['internal']['BundleUtils'].setupDefaultActions(this.context, ".chart ." + "element-shape", style); this.context.actions.action("select").setOperation(rave['library']['internal']['OperationsUtil'].select()); this.context.actions.action("deselect").setOperation(rave['library']['internal']['OperationsUtil'].deselect()); this._colorAccessor = function(data) { return (data).color; }; this._wasClustered = false; this._wasStacked = false; }, /** @expose */ draw : function() { if (this.isUpdateNothing()) { return; } if (this.context.getPrerenderCallback()) { this.context.getPrerenderCallback()(); } this.preDraw("g.vizlibrary-column"); this.setBorder("column.borderWidth", "column.borderColor"); if (!(this.validateDataModel("g.element-group", "g.grid", "g.axis"))) { return; } var effect = this.getStringProperty("effect.name"); var duration = this.getEffectDuration(effect); var dataSet = this.dataModel.dataset("data"); var transpose = this.getBooleanProperty("transpose"); if (this.updateType == 0) { this._data = (dataSet.data()); this.intervalData = this.makeData(this.dataModel, this._data); this.userKey = dataSet.slot("key").entry(); this.context.actions.action("deselectAll")(this.context.node.selectAll(".chart ." + "element-shape")); } var xDataSlotEntry = dataSet.slot("x").entry(); var yDataSlotEntry = dataSet.slot("y").entry(); var colorDataSlotEntry = dataSet.slot("color").entry(); if (!colorDataSlotEntry && yDataSlotEntry) { dataSet.slot("color").overrideLabel(yDataSlotEntry.label()); } var colorPalette = this.getPalette(); if (colorPalette) { colorPalette.setData(dataSet, "color"); colorPalette.setAccessor(this._colorAccessor); colorPalette.setNullColor(this.getStringProperty("color.null")); } var showLegend = this.isShowLegend(); var legendVisibilityChanged = this._legends.anyVisible() != showLegend; if (legendVisibilityChanged) { this.updateType = 1; } var legendPosition = this.getLegendPosition(); this._legends.visible(showLegend).position(legendPosition).transition(!("none" == effect), duration).setPreExecute(this.context.getPreExecute()).selector(0, this.context.node.selectAll("g.legend")).palette(0, colorPalette).shape(0, "square").title(0, this.context.getDataSlotLabel("legend.title", colorDataSlotEntry)).titleFill(0, (this.context.getPropertyValue("legend.titlestyle.fill"))).titleFontSize(0, (this.context.getPropertyValue("legend.titlestyle.fontsize"))).titleFontFamily(0, (this.context.getPropertyValue("legend.titlestyle.fontfamily"))).setDataSlot(0, colorDataSlotEntry); var stacked100 = "Stacked100" == this.getStringProperty("data.handling"); if (this.updateType <= 1) { this._independentScale = this.makeIndependentScale(dataSet); this._dependentScale = this.makeDependentScale(dataSet, this.intervalData); var subDomainDivisionY = yDataSlotEntry.subDomainDivision(); var scaleDivisionY = subDomainDivisionY == null ? null : + (subDomainDivisionY); this._axes.visible(true).duration(duration).transpose(transpose).scale(0, this._independentScale).scale(2, this._dependentScale).setDataSlot(0, xDataSlotEntry).setDataSlot(2, yDataSlotEntry).useDefaultSelectors().useDefaultX1Properties(true).useDefaultY1Properties(true).scaleTickMagnitude(2, scaleDivisionY).setTickFormatter(0, xDataSlotEntry).setTickFormatterList(2, [yDataSlotEntry], stacked100 ? "percent" : "none", stacked100 ? com_ibm_rave_bundles_components_AxesManager.percentFormat(0) : null); this.prepareLayoutComponent(); this.prepareLayoutSizables(this._layoutComponent, false, true, true, false, this._legends.anyVisible()); var isLegendLeftOrRight = "left" == legendPosition || "right" == legendPosition; if (isLegendLeftOrRight) { this._legends.preLayout(this._layoutComponent, false); this._axes.preLayout(this._layoutComponent, false, 0.1, 0.05, 0, 0.1, 0.05, 0); } else { this._axes.preLayout(this._layoutComponent, true, 0.1, 0.05, 0, 0.1, 0.05, 0); this._legends.preLayout(this._layoutComponent, true); } this._layoutComponent.layout(); legendPosition = this._layoutComponent.legendPosition(); this._legends.position(legendPosition); this._axes.useBoundsFromLayout(this._layoutComponent).setScaleRanges(0.1, 0.05, 0); if (this._independentScale) { var csize = this.getCSSSizeToPixelNumber("column.size"); this._independentScale.setWidth(csize); this._independentScale.applyWidth(this.getBooleanProperty("column.applysize")); this._independentScale.expandZeroExtent(false); this._independentScale.expandPixels(csize / 2.0 + 1.0, false); if (this.getBooleanProperty("axis.x.scale.nice")) { this._independentScale.nice(); } if (this.getBooleanProperty("axis.x.scale.includeZero")) { this._independentScale.includeZero(); } if (transpose) { this.zoomYScale = this._independentScale.scale().copy(); } else { this.zoomXScale = this._independentScale.scale().copy(); } } if (this._dependentScale) { var domainmax = + (this._dependentScale.scale().domain()[1]); if (this.getBooleanProperty("axis.y.scale.includeZero")) { this._dependentScale.includeZero(); } this._dependentScale.expandZeroExtent(true); if (this.getBooleanProperty("axis.y.scale.nice")) { this._dependentScale.nice(scaleDivisionY); } var dataHandling = this.getStringProperty("data.handling"); var isStacked = (colorDataSlotEntry) && ("Stacked" == dataHandling || "Stacked100" == dataHandling); if (this.getBooleanProperty("data.label.display") && !isStacked) { var niceScaleDomain = this._dependentScale.scale().domain(); var range = this._dependentScale.scale().range(); var dependentScaleLengthPx = Math.abs(+ (range[1]) - + (range[0])); var pixelPerUnit = dependentScaleLengthPx / Math.abs(+ (niceScaleDomain[1]) - + (niceScaleDomain[0])); var padding = Math.abs(+ (niceScaleDomain[1]) - + (domainmax)) * pixelPerUnit; var paddingNeeded = 20; if (transpose && (""+(domainmax)).length * 12 < dependentScaleLengthPx / 4) { paddingNeeded = (""+(domainmax)).length * 12; } this._dependentScale.expandPixels(padding < paddingNeeded ? (paddingNeeded - padding) : 2.0, true); } else { this._dependentScale.expandPixels(2.0, true); } if (transpose) { this.zoomXScale = this._dependentScale.scale().copy(); } else { this.zoomYScale = this._dependentScale.scale().copy(); } } this.resetZoom(); } var chartRect = this._layoutComponent.elementRect(); this._legends.rectangle(this._layoutComponent.legendRect()); this._clip.clipRect(chartRect).applyTo(this._chart.select(".content")).call(this.context.node.select("defs").transition().duration(duration)); this._chart.select("rect.background.elements").attr("x", chartRect.x).attr("y", chartRect.y).attr("width", chartRect.width).attr("height", chartRect.height); var xScale, yScale; if (transpose) { xScale = this._dependentScale; yScale = this._independentScale; } else { xScale = this._independentScale; yScale = this._dependentScale; } this.setBackgroundProperties(chartRect, duration); this.configureDataLabels(dataSet, colorDataSlotEntry); this._intervalComponent.data(this.intervalData).key(rave['library']['internal']['AbstractView'].originalDatumAccessor(this.userKey ? this.userKey.accessor() : null)).independentScale(this._independentScale).dependentScale(this._dependentScale).transpose(transpose).colorPalette(colorPalette).specialTransition(this.getSpecialTransition(transpose, colorDataSlotEntry)).delay(this.delayFunction(duration, this._independentScale)).setPreExecute(this.context.getPreExecute()).setRenderCallback(this.context.getRenderCallback()).borderWidth(this.context.convertCSSSizeToPixels(this.context.getPropertyValue("column.borderWidth"))).borderColor((this.context.getPropertyValue("column.borderColor"))).bounds(this._layoutComponent.elementRect()); var intervalUpdate = this._chart.selectAll("g.elements"); if (this.updateType <= 1) { intervalUpdate = intervalUpdate.transition().duration(duration); } intervalUpdate.call(this._intervalComponent); this._axes.useDefaultX1Properties(true); this._axes.useDefaultY1Properties(true); this._axes.setTickFormatter(0, xDataSlotEntry); this._axes.setTickFormatterList(2, [yDataSlotEntry], stacked100 ? "percent" : "none", stacked100 ? com_ibm_rave_bundles_components_AxesManager.percentFormat(0) : null); this._axes.draw(); this._legends.draw(); if (this.updateType <= 2) { var ops = this.getStringProperty("zoom"); if (xScale && (ops == "all" || ops == "x")) { (xScale.scale()).domain(this.zoomXScale.domain()); } if (yScale && (ops == "all" || ops == "y")) { (yScale.scale()).domain(this.zoomYScale.domain()); } var self = this; var zoom = this.context.actions.action("zoom").get("zoom"); com_ibm_rave_bundles_components_ComponentConfiguration.configureZoom(this._chart, zoom, xScale, yScale, null, null, null, chartRect, this._zoomP, this._zoomS, this.getStringProperty("zoom"), function(args) { if (args !== null || arguments.length > 1){ args = Array.prototype.slice.call(arguments, 0); } { self._intervalComponent.specialTransition(null); self._chart.selectAll("g.elements").call(self._intervalComponent); self._axes.redraw(true); zoom.on("zoomend.hideLabels", function(args) { if (args !== null || arguments.length > 1){ args = Array.prototype.slice.call(arguments, 0); } { if (self._axes.hideAnyPanZoom()) { if (self.zoomendedTimer != null) { clearTimeout(self.zoomendedTimer); } self.zoomendedTimer = setTimeout(function() { self.zoomendedTimer = null; self._axes.redraw(false); }, 300); } return null; } }); return self._chart; } }); } this.resetUpdate(); this._chart.selectAll(".element-shape").classed("bundle-shape", true); this._chart.selectAll(".legendShape").classed("bundle-shape", true); if (this.context.getPostrenderCallback()) { this.context.getPostrenderCallback()(); } }, /** @expose */ getCoordinateScale : function(role) { if ("ROLE_X1" == role) { return this._independentScale; } if ("ROLE_Y1" == role) { return this._dependentScale; } return null; }, /** * When the delay option is true, the transition of a bar is delayed by a fraction of the duration based on the bar's ordinal scale value. * @param (int) duration * @param (rave['library']['internal']['CoordinateScaleImpl']) independentScale * @return (rave['internal']['ValueFunction']) */ delayFunction : function(duration, independentScale) { if (duration > 0 && independentScale && this.getBooleanProperty("effect.delay")) { var range = independentScale.scale().range(); if (range && range.length > 1) { var rmin = (+ (range[0])); var rmax = (+ (range[range.length - 1])); if (rmin != rmax) { var scaling = duration / (rmax - rmin); return function(data, index, groupIndex) { return (+ (independentScale.center((data).ind1)) - rmin) * scaling; }; } } } return null; }, /** * Create the independent scale. If the "ordinalScale" datum is null, the scale is null and data will not be displayed. If the "groupScale" datum is non-null, the scale is a grouped scale using the ordinal and group datum; otherwise it is an ordinal scale using the ordinal datum. * @return (rave['library']['internal']['CoordinateScaleImpl']) Coordinate scale for the independent values */ makeIndependentScale : function(dataSet) { var xAccessor = dataSet.slot("x").entry(); if (!xAccessor) { return null; } var colorAccessor = dataSet.slot("color").entry(); if (colorAccessor && "Clustered" == this.getStringProperty("data.handling")) { return rave['library']['internal']['ScaleManager'].makeClusteredScale(this._data, [xAccessor, colorAccessor]); } var scale = rave['library']['internal']['ScaleManager'].makeCoordinateScale(this._data, xAccessor); return scale; }, /** * Create the dependent scale from the data values. The scale range includes all dep1 and dep2 values in the array. It also includes 0 and is padded by 2 pixels to avoid clipping. * @param (Array) data Data array * @return (rave['library']['internal']['CoordinateScaleImpl']) Coordinate scale for the range of values */ makeDependentScale : function(dataSet, data) { var domain = dataSet.slot("y").entry().domain(); if (domain) { return rave['library']['internal']['LinearCoordinateScale'].create(domain); } var yStart = dataSet.slot("yStart").entry(); var omax = rave.max(data, function(data, ix, gix) { var dep1 = + ((data).dep1); var dep2 = + ((data).dep2); return yStart || dep1 != 0 ? Math.max(dep1, dep2) : dep2; }); if (omax == null) { return null; } var omin = rave.min(data, function(data, ix, gix) { var dep1 = + ((data).dep1); var dep2 = + ((data).dep2); return yStart || dep1 != 0 ? Math.min(dep1, dep2) : dep2; }); var ySlot = dataSet.slot("y").entry(); if ("date" == ySlot.type()) { return rave['library']['internal']['TimeCoordinateScale'].create([new Date(omin), new Date(omax)]); } else { return rave['library']['internal']['LinearCoordinateScale'].create([omin, omax]); } }, /** * Special transition for clustered to stacked or vice-versa. Also updates _wasStacked and _wasClustered. * @param (boolean) transpose Whether the chart is transposed * @param (rave['library']['internal']['DataSlotEntry']) colorAccessor The color accessor (needed to tell if the chart is clustered) * @return (String) String for transition type */ getSpecialTransition : function(transpose, colorAccessor) { var result; var handling = this.getStringProperty("data.handling"); var isClustered = colorAccessor && "Clustered" == handling; var isStacked = "Stacked" == handling || "Stacked100" == handling; if (this._wasClustered && isStacked) { result = transpose ? "YX_CTS" : "XY_CTS"; } else if (this._wasStacked && isClustered) { result = transpose ? "XY_STC" : "YX_STC"; } this._wasClustered = isClustered; this._wasStacked = isStacked; return result; }, /** @expose */ requireUpdate : function(property) { return rave['library']['internal']['AbstractView'].prototype.requireUpdate.call(this, property); }, /** @expose */ getGroupStructure : function() { return ["defs", "g.vizlibrary vizlibrary-column", "(", "rect.background chart", "g.chart", "(", "g.content", "(", "rect.background elements", "g.gridlines", "(", "g.grid left", "g.grid bottom", ")", "g.elements", "(", "g.element-group", "g.element-label-group", ")", ")", "g.axes", "(", "g.axes-layout", "g.axisTransform left", "g.axisTransform bottom", ")", "g.axis-callout", ")", "g.legends", "(", "g.legends-layout", "g.legend", ")", ")"]; } }); //com_ibm_rave_bundles_columnBundle_ColumnView.DATASLOT_KEY = "key"; // $source: com/ibm/rave/bundles/components/BackgroundComponentImpl /************************************************************************ ** IBM Confidential ** ** IBM Business Analytics: Rapidly Adaptive Visualization Engine ** ** (C) Copyright IBM Corp. 2017 ** ** The source code for this program is not published or otherwise divested of its trade secrets, ** irrespective of what has been deposited with the U.S. Copyright Office. ************************************************************************/ // GENERATED //@import com/ibm/rave/bundles/components/BundleComponentImpl (loadtime) // superclass //@import com/ibm/rave/bundles/component/BackgroundComponent (runtime) // BackgroundComponent /** *

    Component to set the background color of a bundle. The component properties are:

    The component assumes that the selector on which it is executed is a "rect" shape which lies below the chart. If the size property is non-null, it sets the geometry of this rectangle to be the given size, with upper-left corner at 0,0. If the size is null, the rectangle is not resized.

    The rectangle fill is set to the backgroundColor property. If the property is null, white (#FFFFFF) is used. TODO. Should we set it to null, so the CSS style can also be used to set the background?

    */ var com_ibm_rave_bundles_components_BackgroundComponentImpl = rave['internal']['Declare'](com_ibm_rave_bundles_components_BundleComponentImpl, { //_backgroundColor : null, //_rect : null, /** @expose */ constructor : function() { this._rect = new rave['internal']['RectStruct'](0, 0, 0, 0); }, /** @expose */ execute : function(g) { this.preExecute(); g.style("fill", this._backgroundColor != null ? this._backgroundColor : "#FFFFFF").style("fill-opacity", 1.0); g.attr("x", this._rect.x).attr("y", this._rect.y).attr("width", this._rect.width).attr("height", this._rect.height); }, /** @expose */ type : function() { return com_ibm_rave_bundles_component_BackgroundComponent.COMPONENT_TYPE; }, backgroundColor$0 : function() { return this._backgroundColor; }, backgroundColor$1 : function(backgroundColor) { this._backgroundColor = backgroundColor; return this; }, /** * @param (rave['library']['internal']['ContextSize']) size New value of size property * @return (com.ibm.rave.bundles.components.BackgroundComponentImpl) This component */ /** @expose */ size : function(size) { this._rect.x = 0; this._rect.y = 0; this._rect.width = size.w; this._rect.height = size.h; return this; }, /** @expose */ rect : function(rect) { var r = new rave['internal']['RectStruct'](rect.x, rect.y, rect.width, rect.height); this._rect = r; return this; }, /** @expose */ backgroundColor : function(a0) { var args = arguments; if (args.length == 0) { return this.backgroundColor$0(); } return this.backgroundColor$1(a0); } }); // $source: com/ibm/rave/bundles/components/ChartLayoutComponentImpl /************************************************************************ ** IBM Confidential ** ** IBM Business Analytics: Rapidly Adaptive Visualization Engine ** ** (C) Copyright IBM Corp. 2017 ** ** The source code for this program is not published or otherwise divested of its trade secrets, ** irrespective of what has been deposited with the U.S. Copyright Office. ************************************************************************/ // GENERATED //@import com/ibm/rave/bundles/components/BundleComponentImpl (loadtime) // superclass //@import com/ibm/rave/bundles/component/ChartLayoutComponent (runtime) // ChartLayoutComponent /** *

    Implementation of the chart layout component API. General sequence in a bundle view:

    */ var com_ibm_rave_bundles_components_ChartLayoutComponentImpl = rave['internal']['Declare'](com_ibm_rave_bundles_components_BundleComponentImpl, { //_padding : null, //_legendChartGap : null, //_topChartPadding : null, //_leftChartPadding : null, //_bottomChartPadding : null, //_rightChartPadding : null, //_legendPosition : null, //_legendSizable : null, //_axisSizables : null, //_overallRect : null, //_legendRect : null, //_chartRect : null, //_topRect : null, //_leftRect : null, //_bottomRect : null, //_rightRect : null, //_elementRect : null, _leftPadding : 0, _topPadding : 0, _rightPadding : 0, _bottomPadding : 0, _legendChartAlign : false, _preLegendAtMax : false, _preAxesAtZero : false, constructor : function() { this._axisSizables = []; /** * Construct. All padding is 0, legendPosition is "right", all slices have a size of 0 (value of null). */ { this._padding = 0.0; this._topPadding = 0; this._leftPadding = 0; this._bottomPadding = 0; this._rightPadding = 0; this._topChartPadding = 0.0; this._leftChartPadding = 0.0; this._bottomChartPadding = 0.0; this._rightChartPadding = 0.0; this._legendChartGap = 0.0; this._legendPosition = "right"; this._overallRect = new rave['internal']['RectStruct'](0, 0, 0, 0); this._legendRect = new rave['internal']['RectStruct'](0, 0, 0, 0); this._chartRect = new rave['internal']['RectStruct'](0, 0, 0, 0); this._topRect = new rave['internal']['RectStruct'](0, 0, 0, 0); this._leftRect = new rave['internal']['RectStruct'](0, 0, 0, 0); this._bottomRect = new rave['internal']['RectStruct'](0, 0, 0, 0); this._rightRect = new rave['internal']['RectStruct'](0, 0, 0, 0); this._elementRect = new rave['internal']['RectStruct'](0, 0, 0, 0); this._legendChartAlign = true; } }, /** @expose */ execute : function(g) { this.layout(); }, /** * Calculates rectangles during preliminary layout * @param (boolean) legendAtMax true if legend is given max size; false if legend is asked for its preferred size * @param (boolean) axesAtZero true if axes are given a size of 0; false if axes are asked for their preferred size */ /** @expose */ preLayout : function(legendAtMax, axesAtZero) { this._preLegendAtMax = legendAtMax; this._preAxesAtZero = axesAtZero; this.layout(); this._preLegendAtMax = false; this._preAxesAtZero = false; }, /** * Calls preExecute, then does the layout with the property values, updating the chart, legend, axis, and elements rectangles. */ /** @expose */ layout : function() { this.preExecute(); com_ibm_rave_bundles_components_ChartLayoutComponentImpl.copyRect(this._chartRect, this._overallRect); com_ibm_rave_bundles_components_ChartLayoutComponentImpl.copyRect(this._legendRect, this._overallRect); var x = this._overallRect.x; var y = this._overallRect.y; var w = this._overallRect.width; var h = this._overallRect.height; var maxWH = Math.max(w, h); var tbLegend = "top" == this._legendPosition || "bottom" == this._legendPosition; var legendPercent = this._axisSizables.length == 0 ? 0.5 : 0.3; var legendMaxSize = (tbLegend ? this._legendRect.height : this._legendRect.width) * legendPercent; var legendDynamicSize = this._legendSizable ? (this._preLegendAtMax ? maxWH : this._legendSizable.getPreferredSize()) : 0; if (legendDynamicSize > legendMaxSize) { legendDynamicSize = legendMaxSize; } var isLegendTop = false; var isLegendBottom = false; var isLegendLeft = false; var isLegendRight = false; if ("top" == this._legendPosition) { this._legendRect.height = legendDynamicSize; this._chartRect.height -= this._legendRect.height; this._chartRect.y += this._legendRect.height; isLegendTop = true; } else if ("bottom" == this._legendPosition) { this._legendRect.height = legendDynamicSize; this._chartRect.height -= this._legendRect.height; this._legendRect.y = y + h - this._legendRect.height; isLegendBottom = true; } else if ("left" == this._legendPosition) { this._legendRect.width = legendDynamicSize; this._chartRect.width -= this._legendRect.width; this._chartRect.x += this._legendRect.width; isLegendLeft = true; } else { this._legendRect.width = legendDynamicSize; this._chartRect.width -= this._legendRect.width; this._legendRect.x = x + w - this._legendRect.width; isLegendRight = true; } if (this.evaluatePadding(this._padding, w, h)) { var lrgap = com_ibm_rave_bundles_components_ChartLayoutComponentImpl.evaluateSize(this._legendChartGap, w); var tbgap = com_ibm_rave_bundles_components_ChartLayoutComponentImpl.evaluateSize(this._legendChartGap, h); var chartTop = isLegendTop && this._legendSizable ? tbgap : this._topPadding; var chartLeft = isLegendLeft && this._legendSizable ? lrgap : this._leftPadding; var chartBottom = isLegendBottom && this._legendSizable ? tbgap : this._bottomPadding; var chartRight = isLegendRight && this._legendSizable ? lrgap : this._rightPadding; com_ibm_rave_bundles_components_ChartLayoutComponentImpl.inset(this._chartRect, chartTop, chartLeft, chartBottom, chartRight); } else { var lrpadding = com_ibm_rave_bundles_components_ChartLayoutComponentImpl.evaluateSize(this._padding, w); var tbpadding = com_ibm_rave_bundles_components_ChartLayoutComponentImpl.evaluateSize(this._padding, h); var chartTop = tbpadding + com_ibm_rave_bundles_components_ChartLayoutComponentImpl.evaluateSize(this._topChartPadding, h); var chartLeft = lrpadding + com_ibm_rave_bundles_components_ChartLayoutComponentImpl.evaluateSize(this._leftChartPadding, w); var chartBottom = tbpadding + com_ibm_rave_bundles_components_ChartLayoutComponentImpl.evaluateSize(this._bottomChartPadding, h); var chartRight = lrpadding + com_ibm_rave_bundles_components_ChartLayoutComponentImpl.evaluateSize(this._rightChartPadding, w); com_ibm_rave_bundles_components_ChartLayoutComponentImpl.inset(this._chartRect, chartTop, chartLeft, chartBottom, chartRight); this._topPadding = tbpadding; this._leftPadding = lrpadding; this._bottomPadding = tbpadding; this._rightPadding = lrpadding; } if (this._legendSizable) { if (isLegendRight) { this._legendRect.x -= this._rightPadding; this._chartRect.width -= this._rightPadding; this._legendRect.y += this._topPadding; this._legendRect.height -= (this._topPadding + this._bottomPadding); } else if (isLegendLeft) { this._legendRect.x += this._leftPadding; this._chartRect.x += this._leftPadding; this._chartRect.width -= this._leftPadding; this._legendRect.y += this._topPadding; this._legendRect.height -= (this._topPadding + this._bottomPadding); } else if (isLegendTop) { this._legendRect.y += this._topPadding; this._chartRect.y += this._topPadding; this._chartRect.height -= this._topPadding; this._legendRect.x += this._leftPadding; this._legendRect.width -= (this._leftPadding + this._rightPadding); } else { this._legendRect.y -= this._bottomPadding; this._chartRect.height -= this._bottomPadding; this._legendRect.x += this._leftPadding; this._legendRect.width -= (this._leftPadding + this._rightPadding); } } x = this._chartRect.x; y = this._chartRect.y; w = this._chartRect.width; h = this._chartRect.height; var bottomH = 0; var topH = 0; var leftW = 0; var rightW = 0; var tbSO = 0; var lrSO = 0; if (!this._preAxesAtZero) { var countHorz = 0; var countVert = 0; for (var i = 0; i < this._axisSizables.length; ++i) { var sizable = this._axisSizables[i]; if (sizable) { var orientation = sizable.getSizableOrientation(); if ("top" == orientation || "bottom" == orientation) { countHorz++; } else { countVert++; } } } for (var i = 0; i < this._axisSizables.length; ++i) { var sizable = this._axisSizables[i]; if (sizable) { var orientation = sizable.getSizableOrientation(); var tbAxis = "top" == orientation || "bottom" == orientation; var axisDynamicSize = sizable.getPreferredSize(); var spillOver = sizable.getSpillOverSize(); if (tbAxis) { var axisPercent = countHorz > 1 ? 0.4 : 0.5; if (axisDynamicSize > this._chartRect.height * axisPercent) { axisDynamicSize = this._chartRect.height * axisPercent; } if ("top" == orientation) { topH = axisDynamicSize; } else { bottomH = axisDynamicSize; } if (spillOver > lrSO) { lrSO = spillOver; } } else { var axisPercent = countVert > 1 ? 0.4 : 0.5; if (axisDynamicSize > this._chartRect.width * axisPercent) { axisDynamicSize = this._chartRect.width * axisPercent; } if ("left" == orientation) { leftW = axisDynamicSize; } else { rightW = axisDynamicSize; } if (spillOver > tbSO) { tbSO = spillOver; } } } } } if (lrSO > leftW) { leftW = lrSO; } if (lrSO > rightW) { rightW = lrSO; } if (tbSO > topH) { topH = tbSO; } if (tbSO > bottomH) { bottomH = tbSO; } this._leftRect.x = x; this._leftRect.width = leftW; this._leftRect.y = y; this._leftRect.height = h; this._rightRect.x = x + w - rightW; this._rightRect.width = rightW; this._rightRect.y = y; this._rightRect.height = h; this._topRect.y = y; this._topRect.height = topH; this._topRect.x = x; this._topRect.width = w; this._bottomRect.y = y + h - bottomH; this._bottomRect.height = bottomH; this._bottomRect.x = x; this._bottomRect.width = w; this._elementRect.x = x + leftW; this._elementRect.y = y + topH; this._elementRect.width = w - (leftW + rightW); this._elementRect.height = h - (topH + bottomH); if (this._legendSizable && this._legendChartAlign) { if (tbLegend) { this._legendRect.x = this._elementRect.x; this._legendRect.width = this._elementRect.width; } else { this._legendRect.y = this._elementRect.y; this._legendRect.height = this._elementRect.height; } } }, evaluatePadding : function(padding, horizontalExtent, verticalExtent) { if (padding == null) { return false; } var paddingString = (padding) + ""; if (paddingString.length == 0) { return false; } this._topPadding = 0; this._leftPadding = 0; this._bottomPadding = 0; this._rightPadding = 0; var items = paddingString.split(new RegExp(";")); for (var __i_enFor0 = 0, __len_enFor0 = items.length; __i_enFor0 < __len_enFor0; ++__i_enFor0) { var item = items[__i_enFor0]; var parts = item.split(new RegExp(":")); if (items.length == 1 && parts.length != 2) { return false; } if (parts.length == 2) { if (0 <= parts[0].indexOf("top")) { this._topPadding = com_ibm_rave_bundles_components_ChartLayoutComponentImpl.evaluateSize(parts[1], verticalExtent); } else if (0 <= parts[0].indexOf("left")) { this._leftPadding = com_ibm_rave_bundles_components_ChartLayoutComponentImpl.evaluateSize(parts[1], horizontalExtent); } else if (0 <= parts[0].indexOf("bottom")) { this._bottomPadding = com_ibm_rave_bundles_components_ChartLayoutComponentImpl.evaluateSize(parts[1], verticalExtent); } else if (0 <= parts[0].indexOf("right")) { this._rightPadding = com_ibm_rave_bundles_components_ChartLayoutComponentImpl.evaluateSize(parts[1], horizontalExtent); } } } return true; }, /** * @return (rave['internal']['RectStruct']) Legend rectangle */ /** @expose */ legendRect : function() { return this._legendRect; }, /** * @return (rave['internal']['RectStruct']) Chart (elements plus axes) rectangle */ /** @expose */ chartRect : function() { return this._chartRect; }, /** * @return (rave['internal']['RectStruct']) Top axis rectangle */ /** @expose */ topRect : function() { return this._topRect; }, /** * @return (rave['internal']['RectStruct']) Left axis rectangle */ /** @expose */ leftRect : function() { return this._leftRect; }, /** * @return (rave['internal']['RectStruct']) Bottom axis rectangle */ /** @expose */ bottomRect : function() { return this._bottomRect; }, /** * @return (rave['internal']['RectStruct']) Right axis rectangle */ /** @expose */ rightRect : function() { return this._rightRect; }, /** * @return (rave['internal']['RectStruct']) Legend rectangle */ /** @expose */ elementRect : function() { return this._elementRect; }, /** * Set the overall rectangle. This should be called before doing the layout. * @param (rave['internal']['RectStruct']) overall The overall rectangle */ /** @expose */ overall : function(overall) { com_ibm_rave_bundles_components_ChartLayoutComponentImpl.copyRect(this._overallRect, overall); return this; }, padding$0 : function() { return this._padding; }, legendChartAlign$0 : function() { return this._legendChartAlign; }, legendChartGap$0 : function() { return this._legendChartGap; }, topPadding$0 : function() { return this._topChartPadding; }, leftPadding$0 : function() { return this._leftChartPadding; }, bottomPadding$0 : function() { return this._bottomChartPadding; }, rightPadding$0 : function() { return this._rightChartPadding; }, legendPosition$0 : function() { return this._legendPosition; }, topPadding$1 : function(padding) { this._topChartPadding = padding; return this; }, leftPadding$1 : function(padding) { this._leftChartPadding = padding; return this; }, bottomPadding$1 : function(padding) { this._bottomChartPadding = padding; return this; }, rightPadding$1 : function(padding) { this._rightChartPadding = padding; return this; }, /** @expose */ type : function() { return com_ibm_rave_bundles_component_ChartLayoutComponent.COMPONENT_TYPE; }, padding$1 : function(value) { this._padding = value; return this; }, /** @expose */ chartPadding : function(top, left, bottom, right) { this._topChartPadding = top; this._leftChartPadding = left; this._bottomChartPadding = bottom; this._rightChartPadding = right; return this; }, legendChartAlign$1 : function(legendChartAlign) { this._legendChartAlign = legendChartAlign; return this; }, legendChartGap$1 : function(value) { this._legendChartGap = value; return this; }, legendPosition$1 : function(position) { if ("top" == position || "bottom" == position || "left" == position || "right" == position) { this._legendPosition = position; } return this; }, /** @expose */ legendSize : function(sizable) { this._legendSizable = sizable; return this; }, /** @expose */ removeAxisSizables : function() { this._axisSizables.length = 0; return this; }, /** @expose */ addAxisSizable : function(sizable) { this._axisSizables.push(sizable); return this; }, /** @expose */ padding : function(a0) { var args = arguments; if (args.length == 0) { return this.padding$0(); } return this.padding$1(a0); }, /** @expose */ legendChartAlign : function(a0) { var args = arguments; if (args.length == 0) { return this.legendChartAlign$0(); } return this.legendChartAlign$1(a0); }, /** @expose */ legendChartGap : function(a0) { var args = arguments; if (args.length == 0) { return this.legendChartGap$0(); } return this.legendChartGap$1(a0); }, /** @expose */ topPadding : function(a0) { var args = arguments; if (args.length == 0) { return this.topPadding$0(); } return this.topPadding$1(a0); }, /** @expose */ leftPadding : function(a0) { var args = arguments; if (args.length == 0) { return this.leftPadding$0(); } return this.leftPadding$1(a0); }, /** @expose */ bottomPadding : function(a0) { var args = arguments; if (args.length == 0) { return this.bottomPadding$0(); } return this.bottomPadding$1(a0); }, /** @expose */ rightPadding : function(a0) { var args = arguments; if (args.length == 0) { return this.rightPadding$0(); } return this.rightPadding$1(a0); }, /** @expose */ legendPosition : function(a0) { var args = arguments; if (args.length == 0) { return this.legendPosition$0(); } return this.legendPosition$1(a0); } }); /** * Set preferred rectangle to the same position and size as the source rectangle. * @param (rave['internal']['RectStruct']) t preferred rectangle * @param (rave['internal']['RectStruct']) s Source rectangle * @return (rave['internal']['RectStruct']) preferred rectangle */ com_ibm_rave_bundles_components_ChartLayoutComponentImpl.copyRect = function(t, s) { t.x = s.x; t.y = s.y; t.width = s.width; t.height = s.height; return t; }; /** * Inset a rectangle, modifying its x,y,width,height. If that would reduce the rectangle to less than 0 in a dimension, it is not inset in that dimension. If the requested inset is <= 0, 0 is used. * @param (rave['internal']['RectStruct']) r Rectangle * @param (double) top Top inset in pixels * @param (double) left Left inset in pixels * @param (double) bottom Bottom inset in pixels * @param (double) right Right inset in pixels * @return (rave['internal']['RectStruct']) The rectangle */ com_ibm_rave_bundles_components_ChartLayoutComponentImpl.inset = function(r, top, left, bottom, right) { var ileft = Math.max(0.0, left); var iright = Math.max(0.0, right); if (ileft + iright <= r.width) { r.x += ileft; r.width -= ileft + iright; } var itop = Math.max(0.0, top); var ibottom = Math.max(0.0, bottom); if (itop + ibottom <= r.height) { r.y += itop; r.height -= itop + ibottom; } return r; }; /** * Evaluate a size, which may be a number, CSS size, or pecentage, and return the size in pixels. If the size is null or can't be parsed, returns defValue. The value is clamped to the range 0 to extent. * @param (Object) value The size * @param (double) extent The extent in the dimension * @param defValue The default to use if not parsable * @return (double) Size in pixels */ com_ibm_rave_bundles_components_ChartLayoutComponentImpl.evaluateSize = function(value, extent) { var v = rave['library']['internal']['CSSConverter'].convertCSSSizeToPixelNumber(value, extent, 10.0); var d = v != null ? v : 0; return Math.max(0.0, Math.min(d, extent)); }; /** @expose */ com_ibm_rave_bundles_components_ChartLayoutComponentImpl.MAX_AXIS_PERCENT = 0.4; /** @expose */ com_ibm_rave_bundles_components_ChartLayoutComponentImpl.MAX_AXIS_PERCENT_SINGLE_PER_ORIENTATION = 0.5; /** @expose */ com_ibm_rave_bundles_components_ChartLayoutComponentImpl.MAX_LEGEND_PERCENT = 0.3; /** @expose */ com_ibm_rave_bundles_components_ChartLayoutComponentImpl.MAX_LEGEND_PERCENT_NO_AXIS = 0.5; // $source: com/ibm/rave/bundles/components/ClipPathComponentImpl /************************************************************************ ** IBM Confidential ** ** IBM Business Analytics: Rapidly Adaptive Visualization Engine ** ** (C) Copyright IBM Corp. 2017 ** ** The source code for this program is not published or otherwise divested of its trade secrets, ** irrespective of what has been deposited with the U.S. Copyright Office. ************************************************************************/ // GENERATED //@import com/ibm/rave/bundles/components/BundleComponentImpl (loadtime) // superclass /** * ClipPathComponent This component handles creation of a clipPath element, as well as applying that clip path to a given selection. There is a one-to-one relationship between a ClipPathComponent and a clipPath element that is appended to the document. To create multiple clipPath elements, you must create multiple ClipPathComponent instances. Example usage:
     _clip.clipRect(new RectStruct(50, 50, 200, 200)) // Set the clipping rectangle .applyTo(chart.select(".content")) // Apply the clip-path attribute to a graphical element. This can be called repeatedly on different selections. .applyTo(chart.select(".otherContent")) .run(context.node.select("defs")); // ClipPathComponent creates a clipPath element within the provided node. This component should be executed on a single "defs" node, however there is no restriction.  
    */ var com_ibm_rave_bundles_components_ClipPathComponentImpl = rave['internal']['Declare'](com_ibm_rave_bundles_components_BundleComponentImpl, { //_id : null, //_clipRect : null, constructor : function(id) { this._clipRect = new rave['internal']['RectStruct'](0, 0, 100, 100); /** * Initializes the component. The provided id will be used as the "id" attribute for the clipPath element created by this component. Recall that an "id" in an SVG/HTML document must be unique across the entire document. If you create multiple clipPath elements with the same id, then all elements referencing one of these clip paths will not be resolved as you expected. * @param (String) id String ID that is unique across the document. */ { this._id = id; } }, /** @expose */ type : function() { return "ClipPathComponent"; }, /** * Set the rectangular clipping area. Make the _clipRect one pixel larger than requested to avoid the cut-off at bounds. TODO: why?!? * @param (rave['internal']['RectStruct']) rect The rectangular bounds of the clipping area. * @return (com.ibm.rave.bundles.components.ClipPathComponentImpl) This ClipPathComponent. */ /** @expose */ clipRect : function(rect) { this._clipRect = new rave['internal']['RectStruct'](rect.x - 1, rect.y - 1, rect.width + 2, rect.height + 2); return this; }, /** * Set the clip-path attribute on the provided selection. * @return (com.ibm.rave.bundles.components.ClipPathComponentImpl) This ClipPathComponent. */ /** @expose */ applyTo : function(s) { s.attr("clip-path", "url(" + this.url() + ")"); return this; }, /** * Retrieve the id assigned to this clip path. */ /** @expose */ id : function() { return this._id; }, /** * Retrieve the URL that can be used to reference this clip path. */ /** @expose */ url : function() { return "#" + this._id; }, /** @expose */ execute : function(g) { var clipPath = g.selectAll("#" + this._id).data([0]); clipPath.enter().append("clipPath").attr("id", this._id).append("rect"); rave.transition(clipPath.select("rect")).attr("x", this._clipRect.x).attr("y", this._clipRect.y).attr("width", this._clipRect.width).attr("height", this._clipRect.height); } }); // $source: com/ibm/rave/bundles/components/LegendComponentImpl /************************************************************************ ** IBM Confidential ** ** IBM Business Analytics: Rapidly Adaptive Visualization Engine ** ** (C) Copyright IBM Corp. 2017 ** ** The source code for this program is not published or otherwise divested of its trade secrets, ** irrespective of what has been deposited with the U.S. Copyright Office. ************************************************************************/ // GENERATED //@import com/ibm/rave/bundles/components/BundleComponentImpl (loadtime) // superclass //@import com/ibm/rave/bundles/utilities/FontPropertyParser (runtime) // parseCSSFont /** *

    A component to draw a legend, using a RAVE capability swatch legend. In JavaScript the RAVE legend and layout extensions must be loaded. The legend puts its shapes into the selector passed to its execute method, so that selector should choose a group node.

    Most of the component properties are passed directly to the RAVE legend. The properties are:

    visible: If true, the legend is drawn; otherwise it is cleared (all shapes are removed from the legend). The default is true.

    size: A Dim with the size of the legend in the chart coordinate system. If null or zero-sized, the legend is cleared. This is passed to the swatch legend.

    colorScale: A scale (OrdinalScale) used as the RAVE legend scale. If null, the legend is cleared. The legend currently only supports a single ordinal color scale.

    orient: The RAVE legend orient, either "horizontal" or "vertical". The default is "vertical".

    swatchSize: The RAVE legend size. Note that this is in square pixels. The default is 20*20.

    shape: The RAVE legend shape. The default is "square".

    title: The RAVE legend title. The default is null.

    titleFill: The legend title color. The default is null.

    titleFontSize: The legend title font size. The default is null.

    titleFontFamily: The legend title font family. The default is null.

    borderColor: The RAVE legend borderColor. The default is "black".

    labelFormat: The RAVE legend labelFormat. The default is null.

    */ var com_ibm_rave_bundles_components_LegendComponentImpl = rave['internal']['Declare'](com_ibm_rave_bundles_components_BundleComponentImpl, { /** * Legend size property */ //_size : null, /** * Color scale */ //_colorPalette : null, /** * Orient, "horizontal" or "vertical" */ //_orient : null, /** * Swatch size function */ //_swatchSizeFunc : null, /** * Scale */ //_scale : null, /** * Swatch symbol */ //_shape : null, /** * Legend title */ //_title : null, /** * Legend title styling */ //_titleStyle : null, /** * Legend entry styling */ //_entryStyle : null, /** * Custom formatter */ //_labelFormat : null, /** * The swatch legend, created on demand */ //_swatchLegend : null, /** * The continuous legend, created on demand */ //_continuousLegend : null, /** * The legend type, either "SwatchLegend" or "ContinuousLegend" */ //_legendType : null, /** * Is the legend visible */ _visible : false, /** * Swatch size in square pixels */ _swatchSize : 0, /** * Constructor; sets bound and, colorScale to null, all other properties to their default values. */ /** @expose */ constructor : function() { this._visible = true; this._size = null; this._colorPalette = null; this._orient = "horizontal"; this._swatchSize = 16.0 * 16.0; this._swatchSizeFunc = null; this._scale = null; this._shape = "square"; this._title = null; this._titleStyle = {}; this._entryStyle = {}; this._labelFormat = null; this._swatchLegend = null; this._continuousLegend = null; this._legendType = null; }, /** @expose */ type : function() { return "LegendComponent"; }, /** @expose */ execute : function(g) { if (this._colorPalette) { if ("continuous" == this._colorPalette.getType()) { if (!this._continuousLegend) { this._continuousLegend = (rave.capabilities.extension("legend")).continuous(); } this._legendType = "ContinuousLegend"; } else { if (!this._swatchLegend) { this._swatchLegend = (rave.capabilities.extension("legend")).swatch(); } this._legendType = "SwatchLegend"; } } else if (this._swatchSizeFunc) { if (!this._swatchLegend) { this._swatchLegend = (rave.capabilities.extension("legend")).swatch(); } this._legendType = "SwatchLegend"; } else { this._legendType = null; } this.preExecute(); if (!this._visible || (!this._colorPalette && !this._swatchSizeFunc) || !this._size || this._size[0] <= 0 || this._size[1] <= 0) { g.selectAll("*").remove(); return; } var fontChecker = rave.capabilities.extension("fontchecker"); if (this._colorPalette && "continuous" == this._colorPalette.getType()) { this._continuousLegend.shapeRectSize("horizontal" == this._orient ? [-1.0, 16.0] : [16.0, -1.0]).size(this._size).scale(this._colorPalette.getScale()).orient(this._orient).title(this._title).titleFill(this._titleStyle["fill"]).titleFontSize(this._titleStyle["font-size"]).titleFontFamily(this._titleStyle["font-Family"]).titleAlignment("start").labelFormat(this._labelFormat); var legend = g.call(this._continuousLegend); if (this._entryStyle) { legend.selectAll(".legendLabel").style(this._entryStyle); } if (this._titleStyle) { legend.selectAll(".legendTitle").style(this._titleStyle); } if (fontChecker) { legend.selectAll(".legendLabel").call(fontChecker); legend.selectAll(".legendTitle").call(fontChecker); } } else { var insets = {}; insets["bottom"] = 5; var swatchSize = this._swatchSize; var scale = null; var labelFormatter = this._labelFormat; if (this._swatchSizeFunc && this._scale) { swatchSize = this._swatchSizeFunc; scale = this._scale; } if (this._colorPalette) { scale = this._colorPalette.getScale(); var originalDomain = this._colorPalette.originalDomain(); if (originalDomain) { scale.domain(originalDomain); var f = this._colorPalette.originalDomainLabelAccessor(); if (this._labelFormat) { var self = this; labelFormatter = function(data, index, groupIndex) { return self._labelFormat.call(this, f.call(this, data, index, groupIndex), index, groupIndex); }; } else { labelFormatter = f; } } } this._swatchLegend.labelPadding(8).size(this._size).scale(scale).orient(this._orient).swatchSize(swatchSize).shape(this._shape).title(this._title).titleFill(this._titleStyle["fill"]).titleFontSize(this._titleStyle["font-size"]).titleFontFamily(this._titleStyle["font-family"]).titleAlignment("start").labelFormat(labelFormatter).titleInsets(insets); var legend = g.call(this._swatchLegend); if (this._entryStyle) { legend.selectAll(".legendLabel").style(this._entryStyle); } if (this._titleStyle) { legend.selectAll(".legendTitle").style(this._titleStyle); } if (fontChecker) { legend.selectAll(".legendLabel").call(fontChecker); legend.selectAll(".legendTitle").call(fontChecker); } } }, /** @expose */ legend : function() { if ("ContinuousLegend" == this._legendType) { return this._continuousLegend; } if ("SwatchLegend" == this._legendType) { return this._swatchLegend; } return null; }, /** @expose */ legendType : function() { return this._legendType; }, /** * Set the visible property. * @param (boolean) visible New visible * @return (com.ibm.rave.bundles.components.LegendComponentImpl) This object */ /** @expose */ visible : function(visible) { this._visible = visible; return this; }, /** * see if the legend is visible * @return (boolean) if its visible */ /** @expose */ isVisible : function() { return this._visible; }, /** * Set the size property. * @param (Array) size New size * @return (com.ibm.rave.bundles.components.LegendComponentImpl) This object */ /** @expose */ size : function(size) { this._size = size; return this; }, /** * Set the color scale property. * @param (rave['library']['internal']['Palette']) colorPalette New color scale * @return (com.ibm.rave.bundles.components.LegendComponentImpl) This object */ /** @expose */ colorPalette : function(colorPalette) { this._colorPalette = colorPalette; return this; }, /** * Set the orient property. If the argument is not "horizontal" or "vertical", it is ignored and the orient property is not changed. * @param (String) orient New orient * @return (com.ibm.rave.bundles.components.LegendComponentImpl) This object */ /** @expose */ orient : function(orient) { if ("horizontal" == orient || "vertical" == orient) { this._orient = orient; } return this; }, /** * Set the orient property from a legend position. If the argument is "top" or "bottom", the orient is set to "horizontal". Otherwise it is set to "vertical". * @param (String) position Legend position * @return (com.ibm.rave.bundles.components.LegendComponentImpl) This object */ /** @expose */ position : function(position) { return this.orient(com_ibm_rave_bundles_components_LegendComponentImpl.orientationOf(position)); }, swatchSize$0 : function(swatchSize) { if (swatchSize >= 0.0 && swatchSize != null) { this._swatchSize = swatchSize; } return this; }, /** @expose */ scale : function(scale) { this._scale = scale; return this; }, swatchSize$1 : function(swatchSize) { if (swatchSize) { this._swatchSizeFunc = swatchSize; } return this; }, /** @expose */ shape : function(shape) { this._shape = shape; return this; }, /** @expose */ title : function(title) { this._title = (title != null && title.length > 0) ? title : null; return this; }, /** @expose */ titleFill : function(titleFill) { this._titleStyle["fill"] = titleFill; return this; }, /** @expose */ titleFontSize : function(titleFontSize) { this._titleStyle["font-size"] = titleFontSize; return this; }, /** @expose */ titleFontFamily : function(titleFontFamily) { this._titleStyle["font-family"] = titleFontFamily; return this; }, /** @expose */ labelFormat : function(labelFormat) { this._labelFormat = labelFormat; return this; }, /** @expose */ titleFont : function(titleFontStyle) { this._titleStyle = com_ibm_rave_bundles_utilities_FontPropertyParser.parseCSSFont(titleFontStyle); return this; }, /** @expose */ entryFont : function(entryFontStyle) { this._entryStyle = com_ibm_rave_bundles_utilities_FontPropertyParser.parseCSSFont(entryFontStyle); return this; }, /** @expose */ getSpaceUsed : function() { if (this._colorPalette && "continuous" == this._colorPalette.getType()) { return this._continuousLegend.getUsedSize() + 2; } else { return this._swatchLegend.getUsedSize() + 2; } }, /** @expose */ swatchSize : function(a0) { var args = arguments; if (args.length == 1 && typeof a0 === "function") { return this.swatchSize$1(a0); } return this.swatchSize$0(a0); } }); /** * Get the orient for a position. "top" and "bottom" return "horizontal", anything else ("left", "right", or unknown/null) is "vertical". * @param (String) position A position * @return (String) "horizontal" or "vertical" */ /** @expose */ com_ibm_rave_bundles_components_LegendComponentImpl.orientationOf = function(position) { if ("top" == position || "bottom" == position) { return "horizontal"; } return "vertical"; }; //com_ibm_rave_bundles_components_LegendComponentImpl.HORIZONTAL = "horizontal"; //com_ibm_rave_bundles_components_LegendComponentImpl.VERTICAL = "vertical"; com_ibm_rave_bundles_components_LegendComponentImpl.BAR_THINKNESS = 16; com_ibm_rave_bundles_components_LegendComponentImpl.SWATCH_SIZE = 16; /** @expose */ com_ibm_rave_bundles_components_LegendComponentImpl.TOP = "top"; /** @expose */ com_ibm_rave_bundles_components_LegendComponentImpl.BOTTOM = "bottom"; /** @expose */ com_ibm_rave_bundles_components_LegendComponentImpl.LEFT = "left"; /** @expose */ com_ibm_rave_bundles_components_LegendComponentImpl.RIGHT = "right"; /** @expose */ com_ibm_rave_bundles_components_LegendComponentImpl.ADJUSTABLE = -1; // $source: com/ibm/rave/bundles/components/AxisComponentImpl /************************************************************************ ** IBM Confidential ** ** IBM Business Analytics: Rapidly Adaptive Visualization Engine ** ** (C) Copyright IBM Corp. 2018 ** ** The source code for this program is not published or otherwise divested of its trade secrets, ** irrespective of what has been deposited with the U.S. Copyright Office. ************************************************************************/ // GENERATED //@import com/ibm/rave/bundles/components/BundleComponentImpl (loadtime) // superclass //@import com/ibm/rave/bundles/component/AxisComponent (runtime) // AxisComponent //@import com/ibm/rave/bundles/utilities/TextCrossfader (runtime) // textCrossFade //@import com/ibm/rave/bundles/utilities/FontPropertyParser (runtime) // parseCSSFont //@import com/ibm/rave/bundles/utilities/BundleLabelDropper (runtime) // new /** *

    Component to draw an axis and title. The component is drawn into a Selector group, and the user of the component must translate the group to the axis position and set up the axis scale for the correct number of pixels.

    The component uses a RAVE core Axis for drawing the axis. Most component properties are passed to the axis. The component properties are:

    scale: The axis scale. This must be set up with the domain and range (pixels) of the axis. If null the axis does not render, and removes all axis shapes from the selector. Default null.

    orient: The axis orient, "top", "bottom", "left", or "right". Default "bottom".

    bounds: The bounding box for the axis, used to position the title and to wrap/truncate axis labels. If null the title is placed 50 pixels from the axis line and text is not wrapped.

    tickFormat: A value function passed to the axis to format tick labels. Default null, meaning the RAVE default formatting is used.

    displayAxisTitle: Whether to display the axis title. Default true.

    axisTitle: The title to display on the axis. It is centered on the axis range, and the size property is used to find the distance from the axis. Default null.

    axisColor: A color-string for the axis line. If null, no color is applied and the CSS defaults are used. Default null.

    tickColor: A color-string for the axis ticks. If null, no color is applied and the CSS defaults are used. Default null.

    labelColor: A color-string for the axis tick labels. If null, no color is applied and the CSS defaults are used. Default null.

    titleColor: A color-string for the axis title. If null, no color is applied and the CSS defaults are used. Default null.

    displayAxisLine: Whether to display the axis line. Default true.

    displayAxisTicks: Whether to display the axis ticks. Default true.

    displayAxisTickLabels: Whether to display the axis tick labels. Default true.

    */ var com_ibm_rave_bundles_components_AxisComponentImpl = rave['internal']['Declare'](com_ibm_rave_bundles_components_BundleComponentImpl, { /** * Axis - created on demand */ //_axis : null, /** * Role, from the AxisComponent API */ //_role : null, /** * CoordinateScale */ //_scale : null, /** * Orient, always one of the four legal values */ //_orient : null, /** * Size */ //_bounds : null, //_elementRect : null, /** * The title text; default null (nothing visible) */ /** @expose */ _axisTitle : null, /** * The title style; defaults null (use the CSS styling) */ /** @expose */ _titleStyle : null, /** * Axis line color; default null (use the CSS styling) */ /** @expose */ _lineColor : null, /** * Axis tick color; default null (use the CSS styling) */ /** @expose */ _tickColor : null, /** * Axis tick label style; defaults null (use the CSS styling) */ /** @expose */ _labelStyle : null, //_staggerRotate45Nodes : null, //_staggerFirstNode : null, //_staggerLastNode : null, /** * Axis tick label formatting */ //_tickFormat : null, //_dropOverlap : null, /** * Used to get the extension to enable axis label wrapping */ //_textFlow : null, /** * Used to check the fonts on each label to make sure all characters are covered */ //_fontChecker : null, /** * Run function that applies the properties to the axis line */ //_axisLineProperties : null, /** * Run function that applies the properties to the axis ticks */ //_axisTickProperties : null, /** * Run function that applies the properties to the axis tick labels */ //_axisTickLabelProperties : null, /** * Run function that hides or displays the axis tick labels */ //_displayHideLabels : null, /** * Run function that hides or displays the axis tick labels */ //_panZoomLabels : null, /** * The tick handler registered with the axis; will get called during axis transition */ //_tickHandler : null, //_textTruncationIndicator : null, /** * Used when dealing with numeric scale on the vertical axis and the numbers don't fit */ //_simplifiedTickFormat : null, //_tickMagnitude : null, /** * Whether to display the axis title; default true */ /** @expose */ _displayAxisTitle : false, /** * Whether to display the axis line; default true */ /** @expose */ _displayAxisLine : false, /** * Whether to display the axis ticks; default true */ /** @expose */ _displayTicks : false, /** * Whether to display the axis tick labels (conditional on show labels property); default true */ /** @expose */ _displayTickLabels : false, /** * Whether to display the axis tick labels (conditional on pan-zoom hide property); default true */ /** @expose */ _showPanZoomTickLabels : false, /** * Whether to rotate the axis tick labels; default false */ _rotateLabels : false, _staggerCellWidth : 0, _staggerAlignFirstAtStart : false, _staggerAlignLastAtEnd : false, _layoutTimerId : 0, _layoutTitleSize : 0, _layoutLabelSize : 0, _layoutLabelHeight : 0, _layoutAverageDigitWidth : 0, _layoutSpillOver : 0, /** * Whether to hide overlapping labels; default true */ /** @expose */ _hideOverlappingLabels : false, /** * When true, don't start a new timer */ _pendingLabelTimer : false, /** * The padding in px between tick axis line and tick label, and also between tick label and title. Default 16px. */ _padding : 0, /** * After calling the component, this is true if shapes were rendered, false if they were cleared. */ _renderedShapes : false, _layoutMode : -1, _allowAutoAxisLayoutToChangeOrientaiton : true, _lastAutomaticAxisLayoutOrientation : -1, _allowStagger : false, _allowRotate45 : false, _allowRotate90 : false, constructor : function() { { var self = this; this._axisLineProperties = function(args) { if (args !== null || arguments.length > 1){ args = Array.prototype.slice.call(arguments, 0); } { var line = this.selectAll("path.domain"); if (self._lineColor != null) { line.style("stroke", self._lineColor); } if (self._displayAxisLine) { line.attr("visibility", null); } else { line.attr("visibility", "hidden"); } return null; } }; this._axisTickProperties = function(args) { if (args !== null || arguments.length > 1){ args = Array.prototype.slice.call(arguments, 0); } { var tickLines = this.selectAll("line"); if (self._displayTicks) { tickLines.attr("visibility", null); } else { tickLines.attr("visibility", "hidden"); } if (self._lineColor != null) { tickLines.style("stroke", self._tickColor); } return null; } }; this._axisTickLabelProperties = function(args) { if (args !== null || arguments.length > 1){ args = Array.prototype.slice.call(arguments, 0); } { var labels = this.selectAll("text"); labels.each(self._displayHideLabels); labels.each(self._panZoomLabels); labels.style(self._labelStyle); self._axis.ticksHandler(null); return null; } }; this._displayHideLabels = function(obj, group, index) { if (self._displayTickLabels) { if (this.rave_hasProperty("__tickLabelHidden__")) { this.rave_removeProperty("__tickLabelHidden__"); var count = ~~ (this.rave_getProperty("__hiddenCount__")); if (count <= 1) { this.rave_removeProperty("__hiddenCount__"); this.removeAttribute("visibility"); } else { this.rave_setProperty("__hiddenCount__", count - 1); } } } else { if (!(this.rave_hasProperty("__tickLabelHidden__"))) { this.setAttribute("visibility", "hidden"); this.rave_setProperty("__tickLabelHidden__", "hidden"); var count = ~~ (this.rave_getProperty("__hiddenCount__")); this.rave_setProperty("__hiddenCount__", count + 1); } } }; this._panZoomLabels = function(obj, group, index) { if (self._showPanZoomTickLabels) { if (this.rave_hasProperty("__panZoomHidden__")) { this.rave_removeProperty("__panZoomHidden__"); var count = ~~ (this.rave_getProperty("__hiddenCount__")); if (count <= 1) { this.rave_removeProperty("__hiddenCount__"); this.removeAttribute("visibility"); } else { this.rave_setProperty("__hiddenCount__", count - 1); } } } else { if (!(this.rave_hasProperty("__panZoomHidden__"))) { this.setAttribute("visibility", "hidden"); this.rave_setProperty("__panZoomHidden__", "hidden"); var count = ~~ (this.rave_getProperty("__hiddenCount__")); this.rave_setProperty("__hiddenCount__", count + 1); } } }; } this._tickHandler = new com_ibm_rave_bundles_components_AxisComponentImpl.AxisTickHandler(this._axisTickLabelProperties, this._axisTickProperties); /** * Initialize properties to defaults */ { this._axis = null; this._role = null; this._scale = null; this._orient = "bottom"; this._bounds = null; this._displayAxisTitle = true; this._axisTitle = null; this._titleStyle = {}; this._displayAxisLine = true; this._lineColor = null; this._displayTicks = true; this._tickColor = null; this._displayTickLabels = true; this._labelStyle = {}; this._rotateLabels = false; this._hideOverlappingLabels = true; this._dropOverlap = new com_ibm_rave_bundles_utilities_BundleLabelDropper(); this._tickFormat = null; this._showPanZoomTickLabels = true; this._pendingLabelTimer = false; this._padding = 16; this._textFlow = rave.capabilities.extension("textflow"); this._fontChecker = rave.capabilities.extension("fontchecker"); this._renderedShapes = false; } }, /** @expose */ type : function() { return com_ibm_rave_bundles_component_AxisComponent.COMPONENT_TYPE; }, /** @expose */ role : function() { return this._role; }, /** @expose */ execute : function(g) { this.preExecute(); if (!this._scale) { g.selectAll("*").remove(); this._renderedShapes = false; return; } this._renderedShapes = true; if (this._scale.isOrdinal() || this._scale.isClustered()) { this._hideOverlappingLabels = false; this._rotateLabels = true; } else { this._hideOverlappingLabels = true; this._rotateLabels = true; } this.drawTitle(g); this.drawAxis(g); this.handleAxisText(g); this.drawTitle(g); }, /** * This is one place where all the calls that affect the axis text happen in case of allowAutomaticAxisLayout the new behavior applies here * @param (rave['internal']['Selector']) g */ handleAxisText : function(g) { this.stopLabelDroppingUpdate(); var duration = 0, delay = 0; var g2 = rave.transition(g); if (g2.isTransition()) { var t2 = (g2); duration = t2.duration(); delay = t2.delay(); } var axisSelector = g.selectAll("g.axis"); var labels = axisSelector.selectAll("g.tick").filter(rave['library']['internal']['BundleUtils'].notExit).selectAll("text"); var fontChecker = rave.capabilities.extension("fontchecker"); labels.style(this._labelStyle); if (fontChecker) { labels.call(fontChecker); } var mode = this._allowAutoAxisLayoutToChangeOrientaiton ? this.determineWhichAutoMode(g) : this._lastAutomaticAxisLayoutOrientation; this.configureStaggerData(g, mode); this.handleLabelsRotationAndPosition(g, labels, mode); this.hashingNumericScales(labels, this.labelExtent(g), mode); if (duration == 0) { this.doLabelWrapping(g, mode); this.handleLabelsRotationAndPosition(g, labels, mode); } this._lastAutomaticAxisLayoutOrientation = mode; if (!(this._scale.isOrdinal()) && !(this._scale.isClustered())) { var isHorizontal = this._orient == "bottom" || this._orient == "top"; var tick = axisSelector.append("g").classed("tick", true); var tickText = tick.append("text"); if (labels.size() == 0) { var singleValue = this._scale.scale().domain()[0]; var formatter = this._tickFormat; if (!formatter) { var tickFunc = this._scale.scale().tickFormat; if (tickFunc) { formatter = tickFunc.apply(tickFunc, [singleValue]); } } var node = tickText[0][0]; var stringValue = formatter ? formatter.call(node, singleValue, 0, 0) : ""+(singleValue); tickText.text(stringValue); var dim = node.getBBox(); this._layoutLabelSize = isHorizontal ? dim.height : dim.width; if (!isHorizontal || mode != 0) { tickText.text(".0"); this._layoutLabelSize += node.getBBox().width; } } if (!isHorizontal || mode != 0) { tickText.text(".0"); var node = tickText[0][0]; var dim = node.getBBox(); this._layoutAverageDigitWidth = dim.width; } tick.remove(); } if (this._hideOverlappingLabels && duration > 0) { this.updateLabelDropping(labels, duration, delay); } if (duration > 0) { this.doLabelWrappingAfterAnimation(g, labels, mode, duration, delay); } if (!this._displayTickLabels) { this._layoutLabelSize = 0; this._layoutAverageDigitWidth = 0; } }, /** * Rotates the text and shifts it to compensate for the rotation Needs to be called twice once before wrapping in order to have text in correct position for wrap then after to know the correct height of wrapped text in order to shift it correct TODO: find a better way to do this * @param (rave['internal']['Selector']) g selector * @param (rave['internal']['Selector']) labels labels selector * @param (int) mode one of HORIZONTAL, STAGGER, ROTATE90 */ handleLabelsRotationAndPosition : function(g, labels, mode) { if (mode == 2 || mode == 1) { if (this._orient == "bottom") { this.rotateLabels(g, labels, "end", mode); } else if (this._orient == "top") { this.rotateLabels(g, labels, "start", mode); } else { this.rotateLabels(g, labels, "middle", mode); } } else { if (this._orient == "bottom" || this._orient == "top") { this.rotateLabels(g, labels, "middle", mode); } else if (this._orient == "right") { this.rotateLabels(g, labels, "start", mode); } else { this.rotateLabels(g, labels, "end", mode); } } }, /** *

    Numeric scales cannot be truncated or wrapped, if a number doesn't fit the allowed space the number should be hashed

    ex: 12345 -> #####

    This method should be called before {@link #this.doLabelWrapping(rave['internal']['Selector'])} , truncation must be set to off in case of numeric scale

    * @param (rave['internal']['Selector']) labels */ hashingNumericScales : function(labels, extent, mode) { if (!labels || !extent) { return; } if (!(this._scale.isOrdinal()) && !(this._scale.isClustered())) { var isHorizontal = this._orient == "bottom" || this._orient == "top"; var tickSpace = mode == 1 ? extent[1] : extent[0]; this._textTruncationIndicator = ""; this._layoutLabelSize = 0; for (var i = 0; i < labels.size(); ++i) { var node = labels[i][0]; var dim = node.getBBox(); var width = dim.width; var height = dim.height; var size = !isHorizontal || mode == 1 ? width : height; if (size > this._layoutLabelSize) { this._layoutLabelSize = size; } if (width >= tickSpace) { if (this._simplifiedTickFormat) { var newText = this._simplifiedTickFormat.call(null, node.rave_getData(), 0, 0); if (newText != null) { node.rave_setText(newText); } if (node.getBBox().width >= tickSpace) { node.rave_setText(this.stringOfSize(node.rave_getText().length, "#")); } } else { node.rave_setText(this.stringOfSize(node.rave_getText().length, "#")); } } } } }, /** * @param (int) size The desired size of the string * @param (String) ch The character to be repeated in the string * @return (String) A string of the specified size containing repetition of the specified character */ stringOfSize : function(size, ch) { var returnString = ""; for (var i = 0; i < size; ++i) { returnString += ch; } return returnString; }, configureStaggerData : function(g, mode) { if (mode == 3 || mode == 2) { var horizontalDimensions = this.labelExtent(g); var cellWidth = horizontalDimensions[0]; var axisSelector = g.selectAll("g.axis"); var labels = axisSelector.selectAll("text"); var domain = this._scale.scale().domain(); var originalDataLabelAccessor = (this._scale).originalDomainLabelAccessor(); this._staggerRotate45Nodes = []; this._staggerFirstNode = null; this._staggerLastNode = null; for (var i = 0; i < labels.size(); ++i) { var node = labels[0][i]; if (this.isValid(node.rave_getData())) { var domainIndex = -1; if (mode == 3) { var domainLabel = !this._tickFormat ? node.rave_getText() : originalDataLabelAccessor.call(node, node.rave_getData(), 0, 0); for (var index = 0; index < domain.length; ++index) { if (domain[index].toString() == domainLabel) { domainIndex = index; break; } } } this._staggerRotate45Nodes.push(new com_ibm_rave_bundles_components_AxisComponentImpl.NodeIndex(node, domainIndex)); if (domainIndex == 0) { this._staggerFirstNode = node; } if (domainIndex == domain.length - 1) { this._staggerLastNode = node; } } } this._staggerCellWidth = cellWidth * 2; this._staggerAlignFirstAtStart = this._staggerFirstNode ? this._staggerFirstNode.getBBox().width > cellWidth : false; this._staggerAlignLastAtEnd = this._staggerLastNode ? this._staggerLastNode.getBBox().width > cellWidth : false; } }, getStaggerIndex : function(node) { for (var index = 0; index < this._staggerRotate45Nodes.length; ++index) { if (this._staggerRotate45Nodes[index].contains(node)) { var domainIndex = this._staggerRotate45Nodes[index].getIndex(); return domainIndex == -1 ? 0 : domainIndex; } } return -1; }, getStaggerCount : function() { var domain = this._scale.scale().domain(); return domain.length; }, /** *

    The method is responsible for determining which mode to be used with the label positioning if {@link com_ibm_rave_bundles_components_AxisComponentImpl._allowAutomaticLayout} flag is enabled

    * @param (rave['internal']['Selector']) g */ determineWhichAutoMode : function(g) { var isHorizontal = this._orient == "bottom" || this._orient == "top"; var axisSelector = g.selectAll("g.axis"); var labels = axisSelector.selectAll("text"); var dim = this.labelExtent(g); var cellWidth = dim[0]; var cellWidth90 = dim[1]; var layoutLabelHeight = 0; var layoutLabelWidth = 0; var horizontalScore = 0; var staggerScore = 0; var rotate45Score = 0; var rotate90Score = 0; var validNodes = []; for (var i = 0; i < labels.size(); ++i) { var node = labels[0][i]; if (this.isValid(node.rave_getData())) { validNodes.push(node); } } var labelCount = validNodes.length; if (!(this._scale.isOrdinal()) && !(this._scale.isClustered())) { var mode = 0; if (isHorizontal) { mode = this._layoutMode == 1 ? 1 : 0; var tick = axisSelector.append("g").classed("tick", true); var tickText = tick.append("text"); tickText.style(this._labelStyle); tickText.text(",0"); var node = tickText[0][0]; var zeroWidth = node.getBBox().width; tick.remove(); var widestLabel = 0; for (var i = 0; i < labelCount; ++i) { node = validNodes[i]; var nodeRect = node.getBBox(); if (nodeRect.width > widestLabel) { widestLabel = nodeRect.width; } if (nodeRect.height > this._layoutLabelHeight) { this._layoutLabelHeight = nodeRect.height; } } widestLabel += zeroWidth; this._layoutSpillOver = mode == 1 ? this._layoutLabelHeight / 2 : widestLabel / 2 + 2; } else { for (var i = 0; i < labelCount; ++i) { var node = validNodes[i]; var nodeRect = node.getBBox(); if (nodeRect.height > this._layoutLabelHeight) { this._layoutLabelHeight = nodeRect.height; } } this._layoutSpillOver = this._layoutLabelHeight / 2; } return mode; } var originalDataLabelAccessor = (this._scale).originalDomainLabelAccessor(); var staggerStringsWontMatch = this._tickFormat && !originalDataLabelAccessor; var calcStagger = ((this._allowStagger && this._layoutMode == -1) || this._layoutMode == 3) && !staggerStringsWontMatch; var calcRotate45 = (this._allowRotate45 && this._layoutMode == -1) || this._layoutMode == 2; var calcRotate90 = (this._allowRotate90 && this._layoutMode == -1) || this._layoutMode == 1; var spaceFor45Label = 0; for (var i = 0; i < labelCount; ++i) { var node = validNodes[i]; var nodeRect = node.getBBox(); layoutLabelHeight = nodeRect.height; var labelWidth = nodeRect.width; if (labelWidth > layoutLabelWidth) { layoutLabelWidth = labelWidth; } horizontalScore += (labelWidth <= cellWidth ? 1 : cellWidth / labelWidth); if (isHorizontal) { if (calcStagger) { var spaceForLabel = cellWidth * 2; if (i == 0 && i == labelCount - 1) { spaceForLabel *= 0.5; } else if (i == 0 || i == labelCount - 1) { spaceForLabel *= 0.75; } staggerScore += (labelWidth <= spaceForLabel ? 1 : spaceForLabel / labelWidth); } if (calcRotate45) { if (spaceFor45Label == 0) { spaceFor45Label = cellWidth90 / 0.7071 - layoutLabelHeight; } var space = this.calculate45DegreeSpace(node, spaceFor45Label); rotate45Score += (labelWidth <= space ? 1 : space / labelWidth); } if (calcRotate90) { rotate90Score += (labelWidth <= cellWidth90 ? 1 : cellWidth90 / labelWidth); } } } var mode = 0; if (this._layoutMode == -1) { if (isHorizontal && this._allowStagger) { horizontalScore *= 1.1; staggerScore *= 1.1; } if ((staggerScore > horizontalScore) && (staggerScore >= rotate45Score) && (staggerScore >= rotate90Score)) { mode = 3; } else if ((rotate45Score > horizontalScore) && (rotate45Score >= rotate90Score)) { mode = 2; } else if (rotate90Score > horizontalScore) { mode = 1; } } else { if ((this._layoutMode == 3 && staggerStringsWontMatch) || !isHorizontal) { mode = 0; } else { mode = this._layoutMode; } } if (isHorizontal) { switch (mode) { case 3: this._layoutLabelSize = layoutLabelHeight * 2; break; case 2: this._layoutLabelSize = (layoutLabelWidth + layoutLabelHeight) * 0.7071; break; case 1: this._layoutLabelSize = layoutLabelWidth; break; case 0: default: this._layoutLabelSize = layoutLabelHeight; break; } } else { this._layoutLabelSize = layoutLabelWidth; } this._layoutLabelHeight = layoutLabelHeight; return mode; }, calculate45DegreeSpace : function(node, maxWidth) { var width = maxWidth; var tfm = node.rave_getParentNode().getAttribute("transform"); if (tfm != null) { var tfmString = tfm.toString(); var indexOfTrans = tfmString.indexOf("translate("); if (indexOfTrans != -1) { indexOfTrans += 10; var indexOfComma = tfmString.indexOf(",", indexOfTrans); if (indexOfComma != -1) { var xAmount = tfmString.substring(indexOfTrans, indexOfComma); var xLabelPos = + (xAmount); var width45Degrees = node.getBBox().width; var xLabelWidth = width45Degrees * 0.7071; var isBottom = this._orient == "bottom"; if (isBottom) { xLabelPos -= node.getBBox().height / 4; if (xLabelPos - xLabelWidth < this._bounds.x) { xLabelWidth = xLabelPos - this._bounds.x; width = xLabelWidth / 0.7071; } } else { if (xLabelPos + xLabelWidth > this._bounds.x + this._bounds.width) { xLabelWidth = (this._bounds.x + this._bounds.width) - xLabelPos; width = xLabelWidth / 0.7071; } } if (width > maxWidth) { width = maxWidth; } } } } return width; }, /** * @param (rave['internal']['Selector']) labels selector with all labels to be rotated * @param (rave['internal']['Selector']) g The parent selector of labels * @param (String) textAnchor The position of the anchor * @param alignmentMode One of HORIZONTAL, STAGGER, ROTATE45, ROTATE90 */ rotateLabels : function(g, labels, textAnchor, mode) { if (this._rotateLabels) { var self = this; var positioning = function(data, index, groupIndex) { var x = 0; var y = 0; var rotation_cy = 0; var isBottom = self._orient == "bottom"; if (mode == 3) { var cellIndex = self.getStaggerIndex(this); if (cellIndex != -1) { if (cellIndex % 2 == 1) { var staggerDirection = isBottom ? 1 : -1; y += (self._layoutLabelHeight * staggerDirection); } if (cellIndex == 0 && self._staggerAlignFirstAtStart) { x -= self._staggerCellWidth / 4; } else if (cellIndex == self.getStaggerCount() - 1 && self._staggerAlignLastAtEnd) { x += self._staggerCellWidth / 4; } } } else if (mode == 2) { if (isBottom) { x -= self._layoutLabelHeight; } else { x += self._layoutLabelHeight / 2; } } else if (mode == 1) { if (isBottom) { x -= (this.getBBox().height / 2 + self._layoutLabelHeight / 4); rotation_cy = ~~(self._padding / 4 + self._axis.tickSize()); } else { x -= (this.getBBox().height / 2 - self._layoutLabelHeight); rotation_cy = ~~-(self._padding / 4 + self._axis.tickSize()); } } var rotationDegrees = mode == 1 ? -90 : mode == 2 ? -45 : 0; return "translate(" + x + "," + y + ") rotate(" + rotationDegrees + ",0," + rotation_cy + ")"; }; labels.attr("transform", positioning).style("text-anchor", textAnchor); if (mode == 3) { if (this._staggerAlignFirstAtStart) { this._staggerFirstNode.rave_setStyle("text-anchor", "start"); } if (this._staggerAlignLastAtEnd) { this._staggerLastNode.rave_setStyle("text-anchor", "end"); } } } }, /** @expose */ axis : function() { return this._axis; }, /** * Draw the axis. The scale is non-null. * @param (rave['internal']['Selector']) g Selector group into which the axis is drawn. */ drawAxis : function(g) { var axisSelector = g.selectAll("g.axis").data([0]); axisSelector.enter().append("g").classed("axis", true).classed(this._orient, true); if (!this._axis) { this._axis = new rave['internal']['Axis'](); } if (this._hideOverlappingLabels) { this._textFlow.valignment("top").dropTextOnFail(false); } this._axis.ticksHandler(this._tickHandler); this._axis.orient(this._orient); this._axis.tickFormat(this._tickFormat); this._axis.tickPadding(10.0); if (this._scale.isOrdinal() || this._scale.isClustered()) { var labelHeight = 20.0; var isHorizontal = this._orient == "bottom" || this._orient == "top"; if (isHorizontal) { labelHeight /= 0.7071; } var range = this._scale.scale().rangeExtent(); var extent = + (range[1]) - + (range[0]); this._axis.ticks(extent / labelHeight); } else { if (this._tickMagnitude == null) { this._axis.ticks(10.0); } else { this._axis.ticks.apply(this._axis, [10.0, this._scale.scale().getTickFormat(), this._tickMagnitude]); } } var s = this._scale.scale(); if (this._scale.originalDomain()) { var sOrdinal = s.copy(); sOrdinal.domain(this._scale.originalDomain()); s = sOrdinal; var self = this; var originalDataLabelAccessor = (self._scale).originalDomainLabelAccessor(); var tickFormatter; if (originalDataLabelAccessor) { if (this._tickFormat) { tickFormatter = function(data, index, groupIndex) { return self._tickFormat.call(this, originalDataLabelAccessor.call(this, data, index, groupIndex), index, groupIndex); }; } else { tickFormatter = originalDataLabelAccessor; } } else { tickFormatter = this._tickFormat; } this._axis.tickFormat(tickFormatter); } this._axis.scale(s); axisSelector.call(this._axis); var g2 = rave.transition(axisSelector); if (!(g2.isTransition())) { axisSelector.selectAll("text").call(this._dropOverlap, this._hideOverlappingLabels); } axisSelector.selectAll("path.domain").classed("axis-line", true); axisSelector.selectAll("g.tick line").classed("axis-tick", true); if (this._fontChecker) { axisSelector.selectAll("g.tick text").classed("axis-label", true).call(this._fontChecker); } else { axisSelector.selectAll("g.tick text").classed("axis-label", true); } axisSelector.call(this._axisLineProperties); }, /** * Draw the axis title. * @param (rave['internal']['Selector']) g Selector group into which the title is drawn. */ drawTitle : function(g) { if (!this._displayAxisTitle || this._axisTitle == null || this._axisTitle.trim().length == 0 || !this._bounds) { g.selectAll("text.axis-title." + this._orient).remove(); return; } var x = 0; var y = 0; var dy = ""; var transform; if ("top" == this._orient) { x = this._elementRect.x + this._elementRect.width / 2; y = -this._bounds.height + this._padding / 4; dy = "0.75em"; } else if ("bottom" == this._orient) { x = this._elementRect.x + this._elementRect.width / 2; y = this._bounds.height - this._padding / 4; dy = "-0.25em"; } else if ("left" == this._orient) { x = -this._elementRect.y - this._elementRect.height / 2; y = -this._bounds.width + this._padding / 4; dy = "0.75em"; transform = "rotate(-90)"; } else { x = this._elementRect.y + this._elementRect.height / 2; y = -this._bounds.width + this._padding / 4; dy = "0.75em"; transform = "rotate(90)"; } var fillOpacity; { var tmp = g.append("text").attr("class", "axis-title " + this._orient); fillOpacity = tmp.style("fill-opacity"); tmp.remove(); } var label = g.selectAll("text.axis-title." + this._orient); if (label.size() == 0) { label.data([0]).enter().append("text").attr("class", "axis-title " + this._orient).style("text-anchor", "middle").attr("x", x).attr("y", y).attr("transform", transform).attr("dy", dy).style(this._titleStyle).text(this._axisTitle); if (this._fontChecker) { g.selectAll("text.axis-title." + this._orient).call(this._fontChecker); } } com_ibm_rave_bundles_utilities_TextCrossfader.textCrossFade(rave.transition(label), label.text(), this._axisTitle, fillOpacity, 0.25).style("text-anchor", "middle").attr("x", x).attr("y", y).attr("transform", transform).attr("dy", dy).style(this._titleStyle); }, getUnZoomedScale : function(scale) { var s = scale.copy(); if (s.getZoomTransform()) { s.getZoomTransform()(1, 0); } return s; }, isValid : function(data) { var s = this.getUnZoomedScale(this._axis.scale()); var v = + (s.call(null, data, 0, 0)); var range = this._axis.scale().range(); if (this._axis.scale().range().indexOf(v)> -1) { return true; } if (range[0] < v && v < range[1]) { return true; } if (range[0] > v && v > range[1]) { return true; } return false; }, /** * Apply label wrapping if requested. * @param (rave['internal']['Selector']) g * @param (int) mode One of HORIZONTAL, STAGGER, ROTATE45, ROTATE90 */ doLabelWrapping : function(g, mode) { if (this._displayTickLabels) { this._textFlow.valignment("top"); if (!this._hideOverlappingLabels) { this._textFlow.dropTextOnFail(true); } var d = this.labelExtent(g); if (!d || d[0] < 0 || d[1] < 0) { return; } var w = ~~ (d[0]); var h = ~~ (d[1]); if (mode == 2) { w = ~~(d[1] / 0.7071 - this._layoutLabelHeight); h = ~~(this._layoutLabelHeight / 0.7071); } else if (mode == 1) { var tmp = w; w = h; h = tmp; } var allowWrap = mode == 1; if (this._scale.isOrdinal() || this._scale.isClustered()) { var hActual = ~~ (this._layoutLabelHeight * 1.2); if (hActual > h) { h = hActual; } var isHorizontal = this._orient == "bottom" || this._orient == "top"; if (mode == 0 && !isHorizontal) { allowWrap = true; } } var self = this; var cellWidth = w; var cellHeight = h; this._textFlow.wrap(allowWrap).truncate(true).textTruncateIndicator(this._textTruncationIndicator != null ? this._textTruncationIndicator : "...").spacing(1.2).extent(function(data, index, groupIndex) { var width = cellWidth; var height = cellHeight; if (mode == 2) { var cellIndex = self.getStaggerIndex(this); if (cellIndex != -1) { width = ~~self.calculate45DegreeSpace(this, cellWidth); } } else if (mode == 3) { var cellIndex = self.getStaggerIndex(this); if (cellIndex != -1) { if (cellIndex == 0 && cellIndex == self.getStaggerCount() - 1) { width = cellWidth; } else if (cellIndex == 0 || cellIndex == self.getStaggerCount() - 1) { width = cellWidth * 3 / 2; } else { width = cellWidth * 2; } height = cellHeight / 2; } } return [width, height]; }); g.selectAll("g.tick > text").call(this._textFlow); } }, /** *

    Get the extent of the axis label bounds. If the axis bounds are non-null they are used as the axis bounds; otherwise the scale range and AXIS_LABEL_EXTENT_CONSTANT are used as the bounds.

    If the axis scale has range bands, the label bounds are the size of the range bands in the dimension parallel to the axis and the size of the axis bounds in the other dimension. Otherwise the label bounds are the axis bounds.

    If a title with non-empty text was created, the label bounds are reduced by the title font height in the dimension perpendicular to the axis (since the title is always placed at the edge of the bounds).

    * @param (rave['internal']['Selector']) g Selector group for axis * @return (Array) The extent of the axis label bounds */ /** @expose */ labelExtent : function(g) { var isHorizontal = this._orient == "bottom" || this._orient == "top"; var w = this._bounds.width; var h = this._bounds.height; if (this._scale.scale().rangeBand) { var rangeBandValue = + (this._scale.scale().rangeBand()); if (isHorizontal) { w = rangeBandValue; } else { h = rangeBandValue; } } this.calcTitleExtent(g); if (isHorizontal) { h -= this._axis.tickSize(); h -= this._padding / 2; if (this._layoutTitleSize != 0) { h -= this._layoutTitleSize; h -= this._padding / 2; } } else { w -= this._axis.tickSize(); w -= this._padding / 2; if (this._layoutTitleSize != 0) { w -= this._layoutTitleSize; w -= this._padding / 2; } } return [w, h]; }, calcTitleExtent : function(g) { this._layoutTitleSize = 0; var title = g.selectAll("text.axis-title"); if (title.size() > 0) { var textHeight = title[0][0].getBBox().height; this._layoutTitleSize = textHeight; } }, /** * Set the role to one of the constants ROLE_X1 etc. defined in AxisComponent. * @param (String) role The new role * @return (com.ibm.rave.bundles.components.AxisComponentImpl) This object */ /** @expose */ setRole : function(role) { this._role = role; return this; }, /** * Set the ticks interval on the scale based on the magnitude. tickMagnitude represents power of 10. null value gives the default scale ticks. * @param (Number) tickMagnitude * @return (com.ibm.rave.bundles.component.AxisComponent) this */ /** @expose */ scaleTickMagnitude : function(tickMagnitude) { this._tickMagnitude = tickMagnitude; return this; }, /** * @param (rave['library']['internal']['CoordinateScaleImpl']) scale The new scale */ /** @expose */ scale : function(scale) { this._scale = scale ? scale : null; return this; }, /** * Only legal values are accepted, otherwise the orient is unchanged. * @param (String) orient The new orient */ orient$0 : function(orient) { if ("left" == orient || "bottom" == orient || "right" == orient || "top" == orient) { this._orient = orient; if (this._role == null) { if ("left" == orient) { this._role = "ROLE_Y1"; } else if ("bottom" == orient) { this._role = "ROLE_X1"; } else if ("right" == orient) { this._role = "ROLE_Y2"; } else { this._role = "ROLE_X2"; } } } return this; }, /** * Returns the current orientation string return The current orient */ orient$1 : function() { return this._orient; }, /** * @param (rave['internal']['RectStruct']) bounds The new bounds */ /** @expose */ bounds : function(bounds) { this._bounds = bounds; return this; }, /** @expose */ elementRect : function(elementRect) { this._elementRect = elementRect; return this; }, tickFormat$0 : function(tickFormat) { this._tickFormat = tickFormat; return this; }, tickFormat$1 : function() { return this._tickFormat; }, simplifiedTickFormat$0 : function(tickFormat) { this._simplifiedTickFormat = tickFormat; return this; }, simplifiedTickFormat$1 : function() { return this._simplifiedTickFormat; }, /** @expose */ displayAxisTitle : function(displayAxisTitle) { this._displayAxisTitle = displayAxisTitle; return this; }, /** @expose */ displayAxisLine : function(displayAxisLine) { this._displayAxisLine = displayAxisLine; return this; }, /** @expose */ displayTicks : function(displayTicks) { this._displayTicks = displayTicks; return this; }, /** @expose */ displayTickLabels : function(displayTickLabels) { this._displayTickLabels = displayTickLabels; return this; }, /** @expose */ allowAutomaticAxisLayoutToChangeOrientation : function(state) { this._allowAutoAxisLayoutToChangeOrientaiton = state; return this; }, /** @expose */ isAllowAutomaticAxisLayoutToChangeOrientation : function() { return this._allowAutoAxisLayoutToChangeOrientaiton; }, /** @expose */ showPanZoomTickLabels : function(showPanZoomTickLabels) { this._showPanZoomTickLabels = showPanZoomTickLabels; return this; }, /** @expose */ axisTitle : function(axisTitle) { this._axisTitle = axisTitle; return this; }, /** @expose */ axisColor : function(axisColor) { this._lineColor = axisColor; this._tickColor = axisColor; return this; }, /** @expose */ lineColor : function(lineColor) { this._lineColor = lineColor; return this; }, /** @expose */ tickColor : function(tickColor) { this._tickColor = tickColor; return this; }, /** @expose */ labelColor : function(labelColor) { this._labelStyle["fill"] = labelColor; return this; }, labelStyle$0 : function(fill, fontSize, fontFamily) { this._labelStyle["fill"] = fill; this._labelStyle["font-size"] = fontSize; this._labelStyle["font-family"] = fontFamily; return this; }, /** @expose */ titleColor : function(titleColor) { this._titleStyle["fill"] = titleColor; return this; }, titleStyle$0 : function(fill, fontSize, fontFamily) { this._titleStyle["fill"] = fill; this._titleStyle["font-size"] = fontSize; this._titleStyle["font-family"] = fontFamily; return this; }, /** * @param (int) padding The new padding */ /** @expose */ padding : function(padding) { this._padding = padding; return this; }, /** * @param mode LayoutMode for axis, one of: null (numeric axis), automatic, horizontal, stagger, rotate45, rotate90 */ /** @expose */ layoutMode : function(layoutMode) { this._layoutMode = -1; if (layoutMode != null) { if (layoutMode == "horizontal") { this._layoutMode = 0; } else if (layoutMode == "stagger") { this._layoutMode = 3; } else if (layoutMode == "rotate45") { this._layoutMode = 2; } else if (layoutMode == "rotate90") { this._layoutMode = 1; } } return this; }, /** * @param (boolean) allow Enable Stagger to be considered in the automatic layout algorithm */ /** @expose */ allowStagger : function(allow) { this._allowStagger = allow; return this; }, /** * @param (boolean) allow Enable Rotate 45 to be considered in the automatic layout algorithm */ /** @expose */ allowRotate45 : function(allow) { this._allowRotate45 = allow; return this; }, /** * @param (boolean) allow Enable Rotate 90 to be considered in the automatic layout algorithm */ /** @expose */ allowRotate90 : function(allow) { this._allowRotate90 = allow; return this; }, /** * @return (boolean) True if on the last call the axis rendered shapes, false otherwise */ renderedShapes : function() { return this._renderedShapes; }, labelStyle$1 : function(fontStyle) { this._labelStyle = com_ibm_rave_bundles_utilities_FontPropertyParser.parseCSSFont(fontStyle); return this; }, titleStyle$1 : function(fontStyle) { this._titleStyle = com_ibm_rave_bundles_utilities_FontPropertyParser.parseCSSFont(fontStyle); return this; }, /** * Determines whether the axis is swapped. * @return (boolean) True if axis is swapped */ isAxisSwapped : function() { return (((this._role == "ROLE_Y1" || this._role == "ROLE_Y2") && (this._orient == "top" || this._orient == "bottom")) || ((this._role == "ROLE_X1" || this._role == "ROLE_X2") && (this._orient == "right" || this._orient == "left"))); }, /** *

    Set the indicator to be used for truncated text

    ex: indicator set to "..." , results in helloworld - > hello...

    If the indicator is not set the default indicator "..." is used

    * @param (String) indicator the string to be placed to indicated truncated text * @return (com.ibm.rave.bundles.component.AxisComponent) This component */ /** @expose */ textTruncateIndicator : function(indicator) { this._textTruncationIndicator = indicator; return this; }, /** * If at least one label collision request is pending we stop the label collision component, and shut down the label collision timer event. */ stopLabelDroppingUpdate : function() { this._pendingLabelTimer = false; }, /** * Start Rave timers with a delay of half the transition duration and the full transition duration. This will fire the label dropping at the halfway mark and at the end. * @param (rave['internal']['Selector']) labels the selection of valid labels for the end of the transition * @param (double) duration of the transition. If 0, we don't do anything. * @param (double) delay of the transition. Added to the duration to delay the updates. */ updateLabelDropping : function(labels, duration, delay) { var self = this; var start = delay + duration; var labelCollideCallback = function(elapsed) { if (!self._pendingLabelTimer) { return true; } labels.call(self._dropOverlap, self._hideOverlappingLabels); if (elapsed >= start) { self._pendingLabelTimer = false; return true; } return false; }; if (duration > 0) { this._pendingLabelTimer = true; rave.timer(labelCollideCallback, start); } }, doLabelWrappingAfterAnimation : function(g, labels, mode, duration, delay) { this._layoutTimerId++; var timerId = this._layoutTimerId; var self = this; var wrapCallback = function(elapsed) { if (self._layoutTimerId == timerId) { self.doLabelWrapping(g, mode); self.handleLabelsRotationAndPosition(g, labels, mode); } return true; }; rave.timer(wrapCallback, delay + duration); }, /** @expose */ preLayout : function() { this._layoutTitleSize = 0; this._layoutLabelSize = 0; this._layoutLabelHeight = 0; this._layoutAverageDigitWidth = 0; this._layoutSpillOver = 0; }, /** @expose */ getSizableType : function() { return this._scale.isOrdinal() || this._scale.isClustered() ? 1 : 0; }, /** @expose */ getSizableOrientation : function() { return this._orient; }, /** @expose */ getPreferredSize : function() { var layoutPaddingSize = 0; if (this._axis) { layoutPaddingSize = this._axis.tickSize(); if (this._layoutLabelSize != 0) { layoutPaddingSize += this._padding / 2; } if (this._layoutTitleSize != 0) { layoutPaddingSize += this._padding / 2; } } return this._layoutLabelSize + this._layoutAverageDigitWidth + this._layoutTitleSize + layoutPaddingSize + 2; }, /** @expose */ getSpillOverSize : function() { return this._layoutSpillOver; }, /** @expose */ orient : function(a0) { var args = arguments; if (args.length == 0) { return this.orient$1(); } return this.orient$0(a0); }, /** @expose */ tickFormat : function(a0) { var args = arguments; if (args.length == 0) { return this.tickFormat$1(); } return this.tickFormat$0(a0); }, /** @expose */ simplifiedTickFormat : function(a0) { var args = arguments; if (args.length == 0) { return this.simplifiedTickFormat$1(); } return this.simplifiedTickFormat$0(a0); }, /** @expose */ labelStyle : function(a0, a1, a2) { var args = arguments; if (args.length == 1) { return this.labelStyle$1(a0); } return this.labelStyle$0(a0, a1, a2); }, /** @expose */ titleStyle : function(a0, a1, a2) { var args = arguments; if (args.length == 1) { return this.titleStyle$1(a0); } return this.titleStyle$0(a0, a1, a2); } }); /** * Given the bounds for the axis and the orientation, return the [x,y] translation for the group containing the axis. These are the usual settings for d3 (RAVE core) axes, where the axis range (pixels) is in the global coordinates, then the axis is moved perpendicular to that to place it next to the chart. * @param (rave['internal']['RectStruct']) bounds Rectangle of the axis bounds * @param (String) orient Orient, "top", "bottom", "left", "right"; if not valid, "bottom" used * @return (double[]) Translation [x,y] */ /** @expose */ com_ibm_rave_bundles_components_AxisComponentImpl.getTranslation = function(bounds, orient) { if ("left" == orient) { return [bounds.x + bounds.width, 0.0]; } if ("right" == orient) { return [bounds.x, 0.0]; } if ("top" == orient) { return [0.0, bounds.y + bounds.height]; } return [0.0, bounds.y]; }; com_ibm_rave_bundles_components_AxisComponentImpl.NodeIndex = rave['internal']['Declare']({ //_node : null, _domainIndex : 0, /** @expose */ constructor : function(node, domainIndex) { this._node = node; this._domainIndex = domainIndex; }, /** @expose */ contains : function(node) { return node == this._node; }, /** @expose */ getIndex : function() { return this._domainIndex; } }); /** * Tick Handler for the axis. This will get called as the core axis is transitioned. */ com_ibm_rave_bundles_components_AxisComponentImpl.AxisTickHandler = rave['internal']['Declare'](rave['internal']['AbstractTickHandler'], { //_label : null, //_tick : null, _$functionClassMethod : function() { var _$self = function(args) { if (args !== null || arguments.length > 1){ args = Array.prototype.slice.call(arguments, 0); } { _$self.handle(args[0]); return null; } }; return _$self; }, constructor : function(label, tick) { this._label = label; this._tick = tick; }, /** @expose */ handle : function(ticks) { ticks.call(this._tick); ticks.call(this._label); } }); //com_ibm_rave_bundles_components_AxisComponentImpl.VISIBILITY = "visibility"; //com_ibm_rave_bundles_components_AxisComponentImpl.HIDDEN = "hidden"; /** @expose */ com_ibm_rave_bundles_components_AxisComponentImpl.LABEL_HIDDEN_FLAG = "__tickLabelHidden__"; /** @expose */ com_ibm_rave_bundles_components_AxisComponentImpl.PANZOOM_HIDDEN_FLAG = "__panZoomHidden__"; /** @expose */ com_ibm_rave_bundles_components_AxisComponentImpl.HIDDEN_COUNT = "__hiddenCount__"; /** @expose */ com_ibm_rave_bundles_components_AxisComponentImpl.PREFERRED_SPACE_PER_TICK = 20; /** @expose */ com_ibm_rave_bundles_components_AxisComponentImpl.PREFERRED_TICK_COUNT = 10; /** @expose */ com_ibm_rave_bundles_components_AxisComponentImpl.TICK_PADDING = 10; //com_ibm_rave_bundles_components_AxisComponentImpl.HORIZONTAL_WEIGHT = 1.1; com_ibm_rave_bundles_components_AxisComponentImpl.HORIZONTAL = 0; com_ibm_rave_bundles_components_AxisComponentImpl.ROTATE90 = 1; com_ibm_rave_bundles_components_AxisComponentImpl.ROTATE45 = 2; com_ibm_rave_bundles_components_AxisComponentImpl.STAGGER = 3; /** * Constant used for text flow spacing */ com_ibm_rave_bundles_components_AxisComponentImpl.TEXTFLOW_SPACING = 1.2; /** * Bottom axis orientation string. */ /** @expose */ com_ibm_rave_bundles_components_AxisComponentImpl.BOTTOM_ORIENTATION = "bottom"; /** * Top axis orientation string. */ /** @expose */ com_ibm_rave_bundles_components_AxisComponentImpl.TOP_ORIENTATION = "top"; /** * Left axis orientation string. */ /** @expose */ com_ibm_rave_bundles_components_AxisComponentImpl.LEFT_ORIENTATION = "left"; /** * Right axis orientation string. */ /** @expose */ com_ibm_rave_bundles_components_AxisComponentImpl.RIGHT_ORIENTATION = "right"; com_ibm_rave_bundles_components_AxisComponentImpl.AUTOMODE = -1; // $source: com/ibm/rave/bundles/components/GridComponentImpl /************************************************************************ ** IBM Confidential ** ** IBM Business Analytics: Rapidly Adaptive Visualization Engine ** ** (C) Copyright IBM Corp. 2017 ** ** The source code for this program is not published or otherwise divested of its trade secrets, ** irrespective of what has been deposited with the U.S. Copyright Office. ************************************************************************/ // GENERATED //@import com/ibm/rave/bundles/components/BundleComponentImpl (loadtime) // superclass //@import com/ibm/rave/bundles/components/StyleStructs (runtime) // new //@import com/ibm/rave/bundles/component/GridComponent (runtime) // GridComponent /** *

    Component to draw gridlines for an axis. The component is drawn into a Selector group, and the user of the component must translate the group to the axis position. Gridlines are created using the axis, setting the tick size to the dimension of the gridline space. For correct behavior the gridline component should be called after the axis has been called.

    The properties are:

    axis: The axis to use. If null, no gridlines are drawn. Default null.

    orient: The axis orientation, one of "top", "bottom", "left", "right". Default "bottom".

    bounds: A rectangle bounding the gridline area, used to find the line length. If null, no gridlines are drawn. Default null.

    displayGridlines: Whether to draw the gridlines. Default false.

    gridlineColor: A color-string for the grid lines. If null, no color is applied and the CSS defaults are used. Default null.

    */ var com_ibm_rave_bundles_components_GridComponentImpl = rave['internal']['Declare'](com_ibm_rave_bundles_components_BundleComponentImpl, { /** * The axis property */ //_axis : null, /** * Role, from the AxisComponent API */ //_role : null, /** * The orientation */ //_orient : null, /** * The bounds */ //_bounds : null, /** * Style of gridlines */ //_gridlineStyle : null, /** * Whether to display gridlines */ _displayGridlines : false, /** * After calling the component, this is true if shapes were rendered, false if they were cleared. */ _renderedShapes : false, /** * Construct, with all properties the defaults. */ /** @expose */ constructor : function() { this._axis = null; this._role = null; this._orient = "bottom"; this._bounds = null; this._displayGridlines = true; this._gridlineStyle = new com_ibm_rave_bundles_components_StyleStructs.LineStyle(); this._renderedShapes = false; }, /** @expose */ type : function() { return com_ibm_rave_bundles_component_GridComponent.COMPONENT_TYPE; }, /** @expose */ role : function() { return this._role; }, /** @expose */ execute : function(g) { this.preExecute(); if (!this._displayGridlines || !this._axis || !this._bounds) { g.selectAll("*").remove(); this._renderedShapes = false; return; } this._renderedShapes = true; var size = ("bottom" == this._orient || "top" == this._orient) ? this._bounds.height : this._bounds.width; var ticksHandler = this._axis.ticksHandler(); var tickSize = this._axis.tickSize(); var outerTickSize = this._axis.outerTickSize(); var tickFormat = this._axis.tickFormat(); var ax = this._axis.tickSize(-size, 0).tickFormat("").ticksHandler(null); g.call(ax); this._axis.tickSize(tickSize, outerTickSize).tickFormat(tickFormat).ticksHandler(ticksHandler); g.selectAll("g.tick line").classed("grid-tick", true); g.selectAll(".grid-tick").style("stroke", this._gridlineStyle._stroke).style("stroke-dasharray", (this._gridlineStyle._dashArray)); g.selectAll("path.domain").remove(); }, /** * @param (rave['internal']['Axis']) axis The new axis */ /** @expose */ axis : function(axis) { this._axis = axis; return this; }, /** * Set the role to one of the constants ROLE_X1 etc. defined in AxisComponent. * @param (String) role The new role * @return (com.ibm.rave.bundles.components.GridComponentImpl) This object */ /** @expose */ setRole : function(role) { this._role = role; return this; }, /** * Only legal values are accepted, otherwise the orient is unchanged. * @param (String) orient The new orient */ orient$0 : function(orient) { if ("left" == orient || "right" == orient || "bottom" == orient || "top" == orient) { this._orient = orient; } return this; }, /** * @param (rave['internal']['RectStruct']) bounds The new bounds */ /** @expose */ bounds : function(bounds) { this._bounds = bounds; return this; }, displayGridlines$0 : function(displayGridlines) { this._displayGridlines = displayGridlines; return this; }, /** @expose */ gridlineStyle : function(gridlineColor, dashArray) { this.gridlineColor(gridlineColor); this.dashArray(dashArray); return this; }, gridlineColor$0 : function(gridlineColor) { this._gridlineStyle._stroke = (gridlineColor != null && gridlineColor.length > 0) ? gridlineColor : null; return this; }, dashArray$0 : function(dashArray) { this._gridlineStyle._dashArray = (dashArray != null && dashArray.length > 0) ? dashArray : null; return this; }, /** * @return (String) The orientation of the gridline. */ orient$1 : function() { return this._orient; }, displayGridlines$1 : function() { return this._displayGridlines; }, gridlineColor$1 : function() { return this._gridlineStyle._stroke; }, dashArray$1 : function() { return this._gridlineStyle._dashArray; }, /** * @return (boolean) True if on the last call the axis rendered shapes, false otherwise */ renderedShapes : function() { return this._renderedShapes; }, /** @expose */ orient : function(a0) { var args = arguments; if (args.length == 0) { return this.orient$1(); } return this.orient$0(a0); }, /** @expose */ displayGridlines : function(a0) { var args = arguments; if (args.length == 0) { return this.displayGridlines$1(); } return this.displayGridlines$0(a0); }, /** @expose */ gridlineColor : function(a0) { var args = arguments; if (args.length == 0) { return this.gridlineColor$1(); } return this.gridlineColor$0(a0); }, /** @expose */ dashArray : function(a0) { var args = arguments; if (args.length == 0) { return this.dashArray$1(); } return this.dashArray$0(a0); } }); // $source: com/ibm/rave/bundles/components/KeyedBundleComponentImpl /************************************************************************ ** IBM Confidential ** ** IBM Business Analytics: Rapidly Adaptive Visualization Engine ** ** (C) Copyright IBM Corp. 2017 ** ** The source code for this program is not published or otherwise divested of its trade secrets, ** irrespective of what has been deposited with the U.S. Copyright Office. ************************************************************************/ // GENERATED //@import com/ibm/rave/bundles/components/BundleComponentImpl (loadtime) // superclass /** * This type of component generates scene nodes based on a provided data set. Accordingly, any component deriving from this class can (and should) make use of this class's key function. Typically this key function will be passed to the second argument of {@link this.Selector#this.data(, rave['internal']['ValueFunction'])} method in Rave Core, when joining data to scene nodes. For more information on how key functions are used, see the documentation for {@link this.Selector#this.data(, rave['internal']['ValueFunction'])} in Rave Core. * @param < (com.ibm.rave.bundles.components.KeyedBundleComponentImpl) T > Any class that extends this component type must have a self reference in order to support method chaining of the {@link this.KeyedBundleComponentImpl#this.key(rave['internal']['SingleValueFunction'])} method. For example:
     public class MyComponent extends DataBasedBundleComponent { ... ... MyComponent c = new MyComponent(); c.someSetter(arg) .key(keyFunction) // returns the MyComponent instance, rather than a DataBasedBundleComponent instance. .otherSetter(arg2); 
    */ var com_ibm_rave_bundles_components_KeyedBundleComponentImpl = rave['internal']['Declare'](com_ibm_rave_bundles_components_BundleComponentImpl, { //keyFunction : null, /** * Set the key function this component should use when joining data to scene nodes. * @param (rave['internal']['SingleValueFunction']) keyFunction This function will be passed each datum individually and must return a unique value (a key). * @return (com.ibm.rave.bundles.components.KeyedBundleComponentImpl) This. */ /** @expose */ key : function(keyFunction) { this.keyFunction = keyFunction; return this; }, /** * Returns a {@link (rave['internal']['ValueFunction']) ValueFunction} that wraps the provided key function. */ /** @expose */ getKey : function() { if (!this.keyFunction) { return null; } var self = this; return function(datum, index, groupIndex) { return self.keyFunction(datum); }; } }); // $source: com/ibm/rave/bundles/components/IntervalComponentImpl /************************************************************************ ** IBM Confidential ** ** IBM Business Analytics: Rapidly Adaptive Visualization Engine ** ** (C) Copyright IBM Corp. 2017 ** ** The source code for this program is not published or otherwise divested of its trade secrets, ** irrespective of what has been deposited with the U.S. Copyright Office. ************************************************************************/ // GENERATED //@import com/ibm/rave/bundles/components/KeyedBundleComponentImpl (loadtime) // superclass //@import com/ibm/rave/bundles/utilities/BundleLabelDropper (runtime) // new //@import com/ibm/rave/bundles/component/IntervalComponent (runtime) // IntervalComponent //@import com/ibm/rave/bundles/utilities/ColorUtil (runtime) // getContrastColor //@import com/ibm/rave/bundles/utilities/LabelStyleUtil (runtime) // new /** *

    A component to draw interval charts. The component puts its shapes into the selector passed to its execute method. Intervals are rectangular regions bounded by ranges in the dependent and independent dimensions.

    The data array passed to the component has one entry per interval to be drawn. Each entry has six properties. Accessors are used to get these properties from the object, and scales to convert them to a graphical property. If a property is not defined (either no accessor or no scale), a default value is used for the property. The six properties are:

    Intervals in general do not distinguish between the dependent and independent variables, although in bar charts they do. The names are used here for compatibility with other two-axis plots such as the line and point.

    The component properties are:

    data: An array with one entry per point. If null, no points are drawn.

    independent1Accessor: A value function applied to a data object to get the independent1 value. If null, the interval is not drawn. The default is null.

    independent2Accessor:A value function applied to a data object to get the independent2 value. If null, the interval is not drawn. The default is null.

    independentScale: A scale applied to the independent values to get the pixel coordinate for drawing the line. If null, the midpoint of the coordinate range is used. The default is null.

    dependentAccessor1: A value function applied to a data object to get the dependent1 value. If null, the interval is not drawn. The default is null.

    dependentAccessor2: A value function applied to a data object to get the dependent2 value. If null, the interval is not drawn. The default is null.

    dependentScale: A scale applied to the dependent value to get the pixel coordinate for drawing the line. If null, the midpoint of the coordinate range is used. The default is null.

    colorAccessor: A value function applied to a data object to get the color value. If null, the point is drawn in the primary color. The default is null.

    colorPalette: A palette applied to the color value to get a color value for drawing the point. If null or if it returns null, the point is drawn in the primary color.

    labelAccessor: A value function applied to a data object to get the label. If null, the point is not labeled. The default is null.

    labelFormatter: A value function applied to the data label (as returned by the labelAccessor) to get the formatted text string used in the chart. If null, the data label is coerced to a string and used as the formatted text string. The default is null. The method is not called when the data label is null.

    valueAccessor: A value function applied to a data object to get the data value that the interval represents. If null, the interval is not drawn.

    transpose: A boolean. If false the independent data is shown on the X axis and the dependent data on the Y; if true they are swapped. Default false.

    primaryColor: The color used to fill the interval when the interval has no color value or there is no color scale. If null, the point is drawn but not colored, and the CSS style will be used.

    itemLabel: A boolean. If true and if the label accessor is defined, the label is shown on each item. Default true.

    itemLabelPosition: A value function applied to a data object to get the item label position. If null, the label is centered.

    */ var com_ibm_rave_bundles_components_IntervalComponentImpl = rave['internal']['Declare'](com_ibm_rave_bundles_components_KeyedBundleComponentImpl, { /** * Data */ //_data : null, /** * Accessor for key variable */ //_keyAccessor : null, /** * Accessor for independent1 variable */ //_independent1Accessor : null, /** * Accessor for independent2 variable */ //_independent2Accessor : null, /** * Independent variable scale */ //_independentScale : null, /** * Accessor for dependent1 variable */ //_dependent1Accessor : null, /** * Accessor for dependent2 variable */ //_dependent2Accessor : null, /** * Dependent scale */ //_dependentScale : null, /** * Color scale */ //_colorPalette : null, /** * Accessor for label role */ //_labelAccessor : null, /** * Accessor for data values */ //_valueAccessor : null, /** * Label formatter, may be null */ //_labelFormatter : null, //_dropOverlap : null, /** * Show label */ //_itemLabelPosition : null, /** * border width */ //_borderWidth : null, //_borderColor : null, /** * Effect */ //_specialTransition : null, //_delay : null, //_labelFontStyle : null, //_bounds : null, //_labelStyleUtil : null, /** * Transpose */ _transpose : false, /** * Show label */ _itemLabel : false, /** * Drop overlapping labels */ _itemOverlap : true, _labelLayerClass : ".element-label-group", _elementLayerClass : ".element-group", _labelContrast : false, _labelShadow : false, constructor : function() { this._dropOverlap = new com_ibm_rave_bundles_utilities_BundleLabelDropper(); this._delay = function(data, index, groupIndex) { return 0; }; this._labelFontStyle = {}; { this._labelStyleUtil = new com_ibm_rave_bundles_utilities_LabelStyleUtil(); } }, /** @expose */ type : function() { return com_ibm_rave_bundles_component_IntervalComponent.COMPONENT_TYPE; }, /** @expose */ execute : function(g) { this.preExecute(); var elementGroupSelector = g.selectAll(this._elementLayerClass); var elementLabelGroupSelector = g.selectAll(this._labelLayerClass); if (g.classed(this._elementLayerClass) || elementGroupSelector.size() == 0 || elementLabelGroupSelector.size() == 0) { elementGroupSelector = g; elementLabelGroupSelector = g; } if (!this._data || !this._independent1Accessor || !this._independent2Accessor || !this._independentScale || !this._dependent1Accessor || !this._dependent2Accessor || !this._dependentScale) { elementGroupSelector.selectAll("*").remove(); elementLabelGroupSelector.selectAll("*").remove(); return; } var self = this; var labelText = !this._labelFormatter ? function(data, index, groupIndex) { if (Math.max(+ (self._dependentScale.upper(self._dependent1Accessor(data))), + (self._dependentScale.upper(self._dependent2Accessor(data)))) - Math.min(+ (self._dependentScale.lower(self._dependent1Accessor(data))), + (self._dependentScale.lower(self._dependent2Accessor(data)))) < 0.001) { return null; } return self._labelAccessor(data); } : function(data, index, groupIndex) { var v = self._labelAccessor(data); return v == null ? null : self._labelFormatter.call(this, v, index, groupIndex); }; var keyFunction = !this._keyAccessor ? null : function(datum, ix, gix) { return self._keyAccessor(datum); }; var labelsOn = this._itemLabel && this._labelAccessor; if (!labelsOn) { g.selectAll("text.element-label").remove(); } var elementSelector = elementGroupSelector.selectAll(".element").data(this._data, this.getKey() ? this.getKey() : keyFunction); elementSelector.exit().remove(); var elementEnter = elementSelector.enter().append("g").attr("class", "element"); elementEnter.append("rect").attr("class", "element-shape").attr("x", this._specialTransition == null ? this.rectangleCoord$0(true, true, true) : this.rectangleCoord$0(true, false, true)).attr("width", this._specialTransition == null ? this.rectangleSize(true, true, true) : this.rectangleSize(true, false, true)).attr("y", this.rectangleCoord$0(false, true, true)).attr("height", 0).style("fill", this._colorPalette); if (labelsOn) { var elementLabelSelector = elementLabelGroupSelector.selectAll(".element-label").data(this._data, this.getKey() ? this.getKey() : keyFunction); elementLabelSelector.exit().remove(); elementLabelSelector.enter().append("text").attr("class", "element-label"); this.addLabels(elementLabelSelector).text(labelText); } var shapes = elementSelector.select(".element-shape"); var t = rave.transition(shapes); if (t != shapes && this._delay) { (t).delay(this._delay); } t.style("fill", this._colorPalette); this.updateBorder(t, this._borderWidth, this._borderColor); var fontChecker = rave.capabilities.extension("fontchecker"); if (this._specialTransition == null) { t.attr("x", this.rectangleCoord$0(true, false, false)).attr("width", this.rectangleSize(true, false, false)).attr("y", this.rectangleCoord$0(false, false, false)).attr("height", this.rectangleSize(false, false, false)); } else if (this.isXYanimation()) { t.attr("y", this.rectangleCoord$0(false, false, false)).attr("height", this.rectangleSize(false, false, false)).transition().attr("x", this.rectangleCoord$0(true, false, false)).attr("width", this.rectangleSize(true, false, false)); } else { t.attr("x", this.rectangleCoord$0(true, false, false)).attr("width", this.rectangleSize(true, false, false)).transition().attr("y", this.rectangleCoord$0(false, false, false)).attr("height", this.rectangleSize(false, false, false)); } if (this._renderCallback) { t.call(this._renderCallback, "elements"); } if (labelsOn) { var labels = g.selectAll(".element-label"); var t2 = rave.transition(labels); if (fontChecker) { labels.call(fontChecker); } if (t2 != labels && this._delay) { (t2).delay(this._delay); } t2.attr("x", this.getXPosition()).attr("dx", this.getXOffset()).attr("y", this.getYPosition()).attr("dy", this.getYOffset()).style("text-anchor", this.getAnchor()); var labelColor = this.getDefaultLabelColor(this._labelFontStyle); this._labelStyleUtil.labelFont(this._labelFontStyle).labelFillColor(this._labelContrast ? this.getLabelFill() : function(data, index, groupIndex) { return labelColor; }).labelShadow(this._labelShadow); labels.call(this._labelStyleUtil); t2.text(labelText); this._dropOverlap.configureForDataLabels(this._bounds); t2.call(this._dropOverlap, this._itemOverlap); } }, /** * Add a <text g=element-label"> to each node in the selection s, setting the text properties to the usual defaults. * @param (rave['internal']['Selector']) s Selector * @return (rave['internal']['Selector']) Selector for the added labels */ addLabels : function(s) { return s.selectAll("element-label").attr("x", this.rectangleCenter(true, true, true)).attr("y", this.rectangleCenter(false, true, true)).attr("dy", ".3em").style("text-anchor", "middle"); }, getAnchor : function() { var self = this; return function(data, index, groupIndex) { if (!self._transpose || (!self._itemLabelPosition)) { return "middle"; } var labelPosition = self._itemLabelPosition.call(this, data, index, groupIndex); if (0 == labelPosition) { return "start"; } else if (1 == labelPosition) { return "middle"; } else { return "end"; } }; }, getLabelFill : function() { var self = this; var labelColor = this.getDefaultLabelColor(this._labelFontStyle); return function(data, index, groupIndex) { if (!self._itemLabelPosition) { return com_ibm_rave_bundles_utilities_ColorUtil.getContrastColor(self._colorPalette.call(this, data, index, groupIndex), labelColor).toString(); } var labelPosition = self._itemLabelPosition.call(this, data, index, groupIndex); if (1 == labelPosition) { return com_ibm_rave_bundles_utilities_ColorUtil.getContrastColor(self._colorPalette.call(this, data, index, groupIndex), labelColor).toString(); } return labelColor; }; }, getXOffset : function() { var self = this; return function(data, index, groupIndex) { if (!self._transpose || (!self._itemLabelPosition)) { return "0em"; } var labelPosition = self._itemLabelPosition.call(this, data, index, groupIndex); if (0 == labelPosition) { return ".3em"; } else if (1 == labelPosition) { return "0em"; } else { return "-.3em"; } }; }, getYOffset : function() { var self = this; return function(data, index, groupIndex) { if (self._transpose || (!self._itemLabelPosition)) { return ".3em"; } var labelPosition = self._itemLabelPosition.call(this, data, index, groupIndex); if (0 == labelPosition) { return "-.3em"; } else if (1 == labelPosition) { return ".3em"; } else { return "1.1em"; } }; }, getXPosition : function() { var self = this; return function(data, index, groupIndex) { if (!self._transpose || (!self._itemLabelPosition)) { return self.rectangleCenter(true, false, false).call(this, data, index, groupIndex); } var labelPosition = self._itemLabelPosition.call(this, data, index, groupIndex); if (0 == labelPosition) { return self.rectangleCoord$1(true, false, false, true).call(this, data, index, groupIndex); } else if (1 == labelPosition) { return self.rectangleCenter(true, false, false).call(this, data, index, groupIndex); } else { return self.rectangleCoord$1(true, false, false, false).call(this, data, index, groupIndex); } }; }, getYPosition : function() { var self = this; return function(data, index, groupIndex) { if (self._transpose || (!self._itemLabelPosition)) { return self.rectangleCenter(false, false, false).call(this, data, index, groupIndex); } var labelPosition = self._itemLabelPosition.call(this, data, index, groupIndex); if (0 == labelPosition) { return self.rectangleCoord$1(false, false, false, false).call(this, data, index, groupIndex); } else if (1 == labelPosition) { return self.rectangleCenter(false, false, false).call(this, data, index, groupIndex); } else { return self.rectangleCoord$1(false, false, false, true).call(this, data, index, groupIndex); } }; }, /** * Return a value function that gives the "x" or "y" coordinate of a rectangle. * @param (boolean) xdim Whether "x" (true) or "y" (false) is requested * @param (boolean) fromBase If true and the scale is non-ordinal, the function returns the coordinate for value 0.0 * @param (boolean) enter Whether the coordinate is for an enter transition * @return (rave['internal']['ValueFunction']) Value function for that coordinate */ rectangleCoord$0 : function(xdim, fromBase, enter) { return this.rectangleCoord$1(xdim, fromBase, enter, false); }, rectangleCoord$1 : function(xdim, fromBase, enter, useMax) { var useDependent = xdim == this._transpose; var scale = useDependent ? this._dependentScale : this._independentScale; if (fromBase && useDependent && this._dependentScale.isLinear()) { var value = scale.lower(0.0); return function(data, index, groupIndex) { return value; }; } var a1 = useDependent ? this._dependent1Accessor : this._independent1Accessor; var a2 = useDependent ? this._dependent2Accessor : this._independent2Accessor; if (enter && this.isCTShandling()) { return function(data, index, groupIndex) { return scale.center(a1(data)); }; } return function(data, index, groupIndex) { if (useMax) { return Math.max(+ (scale.upper(a1(data))), + (scale.upper(a2(data)))); } else { return Math.min(+ (scale.lower(a1(data))), + (scale.lower(a2(data)))); } }; }, /** * Return a value function that gives the "height" or "width" coordinate of a rectangle. * @param (boolean) xdim Whether "width" (true) or "height" (false) is requested * @param (boolean) fromBase If true and the scale is non-ordinal, the function returns 0.001 * @param (boolean) enter Whether the size is for an enter transition * @return (rave['internal']['ValueFunction']) Value function for that coordinate */ rectangleSize : function(xdim, fromBase, enter) { var useDependent = xdim == this._transpose; var scale = useDependent ? this._dependentScale : this._independentScale; if ((fromBase && useDependent && this._dependentScale.isLinear()) || (enter && this.isCTShandling())) { return function(data, index, groupIndex) { return 0.001; }; } var a1 = useDependent ? this._dependent1Accessor : this._independent1Accessor; var a2 = useDependent ? this._dependent2Accessor : this._independent2Accessor; return function(data, index, groupIndex) { return Math.max(0.001, Math.max(+ (scale.upper(a1(data))), + (scale.upper(a2(data)))) - Math.min(+ (scale.lower(a1(data))), + (scale.lower(a2(data))))); }; }, /** * @return (boolean) Whether the XY animation (shift X, then Y) should be used */ isXYanimation : function() { return "XY_CTS" == this._specialTransition || "XY_STC" == this._specialTransition; }, /** * @return (boolean) Whether the data handling changed from clustered to stacked */ isCTShandling : function() { return "XY_CTS" == this._specialTransition || "YX_CTS" == this._specialTransition; }, /** * Return a value function that gives the x or y center coordinate of a rectangle. * @param (boolean) xdim Whether the x (true) or y (false) is requested * @param (boolean) fromBase If true and the scale is non-ordinal, the function returns the scaled 0.0 * @param (boolean) enter Whether the center is for an enter transition * @return (rave['internal']['ValueFunction']) Value function for that coordinate */ rectangleCenter : function(xdim, fromBase, enter) { var useDependent = xdim == this._transpose; var scale = useDependent ? this._dependentScale : this._independentScale; if (fromBase && useDependent && this._dependentScale.isLinear()) { var value = scale.lower(0.0); return function(data, index, groupIndex) { return value; }; } var a1 = useDependent ? this._dependent1Accessor : this._independent1Accessor; var a2 = useDependent ? this._dependent2Accessor : this._independent2Accessor; if (enter && this.isCTShandling()) { return function(data, index, groupIndex) { return + (scale.center(a1(data))); }; } return function(data, index, groupIndex) { var val = (Math.max(+ (scale.upper(a1(data))), + (scale.upper(a2(data)))) + Math.min(+ (scale.lower(a1(data))), + (scale.lower(a2(data))))) / 2.0; if (isNaN(val)) { val = 0; } return val; }; }, /** * @param (java.lang.Object[]) data The new data */ /** @expose */ data : function(data) { this._data = data; return this; }, /** * @param (rave['internal']['SingleValueFunction']) keyAccessor The new key accessor */ /** @expose */ keyAccessor : function(keyAccessor) { this._keyAccessor = keyAccessor; return this; }, /** * @param (rave['internal']['SingleValueFunction']) independent1Accessor The new independent1 accessor */ /** @expose */ independent1Accessor : function(independent1Accessor) { this._independent1Accessor = independent1Accessor; return this; }, /** * @param (rave['internal']['SingleValueFunction']) independent2Accessor The new independent1 accessor */ /** @expose */ independent2Accessor : function(independent2Accessor) { this._independent2Accessor = independent2Accessor; return this; }, /** * @param (rave['library']['internal']['CoordinateScaleImpl']) independentScale The new independent scale */ /** @expose */ independentScale : function(independentScale) { this._independentScale = independentScale; return this; }, /** * @param (rave['internal']['SingleValueFunction']) dependent1Accessor The new dependent1 accessor */ /** @expose */ dependent1Accessor : function(dependent1Accessor) { this._dependent1Accessor = dependent1Accessor; return this; }, /** * @param (rave['internal']['SingleValueFunction']) dependent2Accessor The new dependent2 accessor */ /** @expose */ dependent2Accessor : function(dependent2Accessor) { this._dependent2Accessor = dependent2Accessor; return this; }, /** * @param (rave['library']['internal']['CoordinateScaleImpl']) dependentScale The new dependent scale */ /** @expose */ dependentScale : function(dependentScale) { this._dependentScale = dependentScale; return this; }, /** * @param (rave['library']['internal']['Palette']) colorPalette The new colorPalette */ /** @expose */ colorPalette : function(colorPalette) { this._colorPalette = colorPalette; return this; }, /** * @param (rave['internal']['SingleValueFunction']) labelAccessor The new labelAccessor */ /** @expose */ labelAccessor : function(labelAccessor) { this._labelAccessor = labelAccessor; return this; }, /** * @param (rave['internal']['ValueFunction']) labelFormatter The new labelFormatter */ /** @expose */ labelFormatter : function(labelFormatter) { this._labelFormatter = labelFormatter; return this; }, /** * @param (boolean) transpose The new transpose */ /** @expose */ transpose : function(transpose) { this._transpose = transpose; return this; }, /** * @param (boolean) itemLabel The new itemLabel */ /** @expose */ itemLabel : function(itemLabel) { this._itemLabel = itemLabel; return this; }, /** * @param (rave['internal']['ValueFunction']) labelPosition Function to be used to determine label position */ /** @expose */ itemLabelPosition : function(labelPosition) { this._itemLabelPosition = labelPosition; return this; }, /** * @param itemOverlap drop or show overlap labels */ /** @expose */ itemOverlap : function(_itemOverlap) { this._itemOverlap = _itemOverlap; return this; }, /** @expose */ valueAccessor : function(valueAccessor) { this._valueAccessor = valueAccessor; return this; }, /** * Set the special transition used for clustered-to-stacked. Allowed values are: * @param (String) specialTransition Transition * @return (com.ibm.rave.bundles.components.IntervalComponentImpl) This object */ /** @expose */ specialTransition : function(specialTransition) { this._specialTransition = specialTransition; return this; }, /** @expose */ delay : function(delayFunction) { this._delay = delayFunction; return this; }, /** @expose */ borderWidth : function(width) { this._borderWidth = width; return this; }, /** @expose */ borderColor : function(color) { this._borderColor = color; return this; }, /** @expose */ labelFont : function(labelFontStyle) { this._labelFontStyle = labelFontStyle; return this; }, /** * @param (rave['internal']['RectStruct']) bounds The bounds of the chart area, used for label collision. */ /** @expose */ bounds : function(bounds) { this._bounds = bounds; return this; }, /** * @param (String) className - the class name for labelslayer. If not set, the default is ".element-label-group" return this */ /** @expose */ labelLayerClassName : function(className) { this._labelLayerClass = className; return this; }, /** * @param (String) className - the class name for elementslayer. If not set, the default is ".element-group" return this */ /** @expose */ elementLayerClassName : function(className) { this._elementLayerClass = className; return this; }, /** * @param (boolean) labelContrast {boolean} whether to contrast the label color with background/background element color. * @return (com.ibm.rave.bundles.components.IntervalComponentImpl) this */ /** @expose */ labelContrast : function(labelContrast) { this._labelContrast = labelContrast; return this; }, /** * @param (boolean) labelShadow {boolean} whether to show a label shadow with a contrast label color. * @return (com.ibm.rave.bundles.components.IntervalComponentImpl) this */ /** @expose */ labelShadow : function(labelShadow) { this._labelShadow = labelShadow; return this; }, rectangleCoord : function(a0, a1, a2, a3) { var args = arguments; if (args.length == 3) { return this.rectangleCoord$0(a0, a1, a2); } return this.rectangleCoord$1(a0, a1, a2, a3); } }); /** @expose */ com_ibm_rave_bundles_components_IntervalComponentImpl.LABEL_POSITION_TOP = 0; /** @expose */ com_ibm_rave_bundles_components_IntervalComponentImpl.LABEL_POSITION_CENTER = 1; /** @expose */ com_ibm_rave_bundles_components_IntervalComponentImpl.LABEL_POSITION_BOTTOM = 2; // $source: com/ibm/rave/bundles/components/FilterComponentImpl /************************************************************************ ** IBM Confidential ** ** IBM Business Analytics: Rapidly Adaptive Visualization Engine ** ** (C) Copyright IBM Corp. 2017 ** ** The source code for this program is not published or otherwise divested of its trade secrets, ** irrespective of what has been deposited with the U.S. Copyright Office. ************************************************************************/ // GENERATED //@import com/ibm/rave/bundles/components/BundleComponentImpl (loadtime) // superclass var com_ibm_rave_bundles_components_FilterComponentImpl = rave['internal']['Declare'](com_ibm_rave_bundles_components_BundleComponentImpl, { //_id : null, //color : null, offset_x : 0, offset_y : 0, blur_radius : 0, /** @expose */ constructor : function(id) { this._id = id; }, /** @expose */ setDropshadow : function(offset_x, offset_y, radius, rgb) { this.offset_x = this.getValue(offset_x); this.offset_y = this.getValue(offset_y); this.blur_radius = this.getValue(radius); this.color = rgb; }, getValue : function(s) { if (s == null) { return 0; } return + (s.substring(0, s.length - 2)); }, /** @expose */ execute : function(g) { var s = g.selectAll("#" + this._id).data([0]); var filter = s.enter().append("filter").attr("id", this._id).attr("height", "500%").attr("width", "500%"); filter.append("feGaussianBlur").attr("in", "SourceAlpha"); filter.append("feOffset").attr("result", "offsetBlur"); filter.append("feFlood"); filter.append("feComposite").attr("in2", "offsetBlur").attr("operator", "in"); var merge = filter.append("feMerge"); merge.append("feMergeNode"); merge.append("feMergeNode").attr("in", "SourceGraphic"); s.select("feGaussianBlur").attr("stdDeviation", this.blur_radius); s.select("feOffset").attr("dx", this.offset_x).attr("dy", this.offset_y); s.select("feFlood").attr("flood-color", !this.color ? "black" : this.color); }, /** @expose */ type : function() { return "FilterComponent"; }, /** @expose */ getId : function() { return this._id; } }); })(); },{"./configuration/configuration.json":1,"./i18n/messages_en.json":2,"./vizlibrary-column.css":4,"./vizlibrary.css":5}],4:[function(require,module,exports){ var css = ".vizlibrary-column .element-group .element-shape {\n fill: #ccc;\n fill-opacity: 1.0;\n stroke: white;\n stroke-width: 0.0px;\n shape-rendering: crispEdges;\n}\n.vizlibrary-column .element-shape.dim {\n fill-opacity: 0.3;\n stroke-width: 0.0px;\n}\n.vizlibrary-column .element-label {\n pointer-events: none;\n}\n"; (require("browserify-css").createStyle(css, { "href": "dist/bundles/rave-library-column/node/rave-library-column/vizlibrary-column.css"})); module.exports = css; },{"browserify-css":6}],5:[function(require,module,exports){ var css = ".vizlibrary {\n font-family: Arial, Tahoma, 'Arial Unicode MS', 'Andale WT', 'MS UI Gothic', Gulim, SimSun, PMingLiU, Raghu8, sans-serif;\n font-style: normal;\n}\n/*\n * Chart background rectangle, transparent\n */\n.vizlibrary rect.background.elements {\n fill-opacity: 0.0;\n}\n/*\n * Axes.\n */\n.vizlibrary .axis .tick text {\n font-weight: 300;\n font-size: 14px;\n fill: #3c4646;\n}\n.vizlibrary .axis .tick line {\n fill: none;\n stroke: #eee;\n}\n.vizlibrary .axis path {\n fill: none;\n stroke: #eee;\n}\n/*Axis title\n*/\n.vizlibrary .axis .axislabel {\n font-weight: 500;\n font-size: 14px;\n fill: #323c3c;\n}\n/*\n * Axis callout.\n */\n.vizlibrary .axis-callout {\n pointer-events: none;\n /* Prevent the callout lines from intercepting mouseover events on the element shapes */\n}\n.vizlibrary .callout line {\n stroke: #3c4646;\n stroke-dasharray: 5,5;\n}\n.vizlibrary .callout .label path {\n fill: #3c4646;\n stroke-width: 0px;\n}\n.vizlibrary .callout .label text {\n font-weight: 300;\n font-size: 14px;\n fill: white;\n}\n/*Grid lines*/\n.vizlibrary g.grid g.tick {\n stroke: #dfe9e9;\n stroke-width: 1px;\n}\n/*Legend title*/\n.vizlibrary .legendTitle {\n font-weight: 500;\n font-size: 18px;\n fill: #323c3c;\n}\n/*Legend label*/\n.vizlibrary .legendLabel {\n font-weight: 300;\n font-size: 14px;\n fill: #3c4646;\n}\n.vizlibrary .legendBBox {\n pointer-events: none;\n}\n"; (require("browserify-css").createStyle(css, { "href": "dist/bundles/rave-library-column/node/rave-library-column/vizlibrary.css"})); module.exports = css; },{"browserify-css":6}],6:[function(require,module,exports){ 'use strict'; // For more information about browser field, check out the browser field at https://github.com/substack/browserify-handbook#browser-field. module.exports = { // Create a tag with optional data attributes createLink: function(href, attributes) { var head = document.head || document.getElementsByTagName('head')[0]; var link = document.createElement('link'); link.href = href; link.rel = 'stylesheet'; for (var key in attributes) { if ( ! attributes.hasOwnProperty(key)) { continue; } var value = attributes[key]; link.setAttribute('data-' + key, value); } head.appendChild(link); }, // Create a