Skip to main content

Adding an existing D3 Visualization

Using an Existing D3 Visualization

You can use the Visualization Builder tool to customize an existing D3 visualization and integrate it with MicroStrategy.

In this example, we describe how to customize a D3 Waterfall Chart, a publicly available visualization created by RSloan. You can get the code for this visualization from the public website, http://bl.ocks.org/rsloan/7123450, but to make the process as simple as possible, we have provided a zip file with the CSS, javascript and data files that are used by this visualization.

Once you have walked through the process of customizing the D3 Waterfall Chart, you can extrapolate from the instructions in this topic to customize other D3 visualizations.

  1. Install the Visualization Builder tool, if you have not already done so.
  2. Download the zip file that holds the CSS, javascript and data files used by the D3 Waterfall Chart visualization. Unzip the contents and save the following files in a location where they are easily accessible.

    • WaterfallChartJS.js
    • WaterfallCSS.css
    • data.csv
  3. Open MicroStrategy Web. In this example, use a Google Chrome browser because the instructions include ways to use Google Chrome Developer Tools to help understand and debug your visualization.
  4. Click the Visualization Builder link on the navigation pane to open the Visualization Builder tool.

    external image VisBuilderLink.png
  5. Click the Configuration tab.


    external image VisBuilder_ConfigTab.png


    1. For Visualization name, enter a descriptive name for the custom visualization you are building.

      external image VisBuilder_VisName.png
    2. Configure the required external libraries. You can get these from the D3 visualization code. One at a time, enter the URL for each library that you want to add in the text box at the bottom of the panel and click Add Library. In this example, you add the following D3 libraries:

      http://code.jquery.com/jquery-latest.js
      http://d3js.org/d3.v3.min.js

      external image VisBuilder_PropertiesTab_Libraries.png

    3. Click Apply.
  6. From the File menu, choose Save As.

    1. For Folder name, enter the name of the plug-in folder for your custom visualization. This is generally the same name as the visualization.

      external image VisBuilder_FolderName.png
    2. Click OK. The plug-in folder for the custom visualization you created is saved under your plugins folder.

      external image VisBuilder_FolderSaved.png
  7. Click OK.
  8. Close the Visualization Builder, and then re-open it.
  9. From the File menu, click Open. Select your custom visualization.

    external image VisBuilder_OpenVis.png

    1. The Code Editor tab should be open. Copy the code for the D3 visualization you are using. Paste the CSS for the style and the javascript code into the Code Editor tab. In this example, you copy and paste the contents of WaterfallCSS.css under Style , and you copy and paste the contents of WaterfallChartJS.js under Plot Code. Don't be concerned about the warnings.

      Note: While you are working on your visualization, the size and placement of the Style and Code sections on the Code Editor tab may vary, depending on factors such as whether Developer Tools are open, if you expanded a section, etc. In some cases, there is a large space between the Style and Code sections and you need to scroll down to see the code.

      external image VisBuilder_CodeEditorTab.png
    2. In the javascript code, find the D3 statement that adds the visualization to the body of the page. This is usually d3.select("body"). Replace it with d3.select(this.domNode).

      In this example, you change:
      var svg = d3.select("body").append("svg")

      to:
      var svg = d3.select(this.domNode).append("svg")
    3. Open the Google Chrome Developer Tools and disable caches by selecting Disable cache on the Network tab.

      external image DisableCache.png
    4. Click Apply in Visualization Builder.
    5. In the Google Chrome Developer Tools Console, an error will be displayed, saying that a resource was not found.

      external image DebuggerConsole.png

      This error is displayed in the Console because the code you pasted uses a data.csv file to load the data, and that file does not exist.

      external image CSVDataError.png
    6. Most D3 sample visualizations have an example of the data that is being used. In this case, the following data has been provided by the author.


      external image CSVData.png

    7. To have a better understanding of this visualization, add the data.csv file to the same folder in your plug-in where the javascript files are located—for example, ../plugins/MyCustomD3WaterfallChart/javascript/mojo/js/source/data.csv.

    8. After you add the data.csv file to the folder mentioned above, click Apply in the Visualization Builder again. The visualization should now display in the right panel.


      external image D3WaterfallChart.png

    9. You can use debugger to pause the execution of your code and inspect what is being done. This is a useful way to understand how the visualization gets and manipulates the data. Add debugger; after the data from data.csv has been retrieved.

      external image DebuggerCode.png
    10. Click Apply again. Notice that debugger stops the code execution.

      external image DebuggerConsole2.png
    11. On the Console tab, type "data" and press Enter. Expand each of the data objects on the console to see additional details about the data parameters that are being passed to the csv method.


      external image DebuggerConsole3.png


      This is a useful way to understand the format of the data. When data is retrieved from MicroStrategy using the API, the format might or might not be the same as the format expected by your visualization. Understanding this helps you to determine if you need to further manipulate the data in order for the visualization to work as expected with data coming from MicroStrategy.


      Remove debugger: from the code and save the file.

    12. Now you need to add your MicroStrategy data to your custom D3 visualization. You must do this before you add debugging code; otherwise, the code is deleted.

      1. To add data to the visualization in this example, you use an existing dataset in the MicroStrategy Tutorial project. You choose Select Existing Dataset, navigate to Shared Reports -> Subject Areas -> Customer Analysis -> Customers Summary, and click Select. If you are using an external dataset, you would choose Add External Data and import the data you are using.

        external image VisBuilder_Dataset.png
      2. Open the Editor tab.

        external image VisBuilder_EditorTab.png
      3. Drag the attributes and metrics you want to use for your visualization onto the Editor tab. In this example, you use:

        • Attribute: Month
        • Metrics: Customer CountCustomer Count ForecastLast Month’s Customer Count
        external image VisBuilder_EditorTab_Data.png
    13. Now, you must replace the statement that pulls the sample data for the D3 visualization with a statement that pulls the data from MicroStrategy. In this example, the D3 visualization expects tabular data.

      Usually there are two types of data:

      • Tabular data

        • Typically represented by d3.csv("filename.csv",function(error,csv)){}
        • Since the visualization in this example expects tabular data, open the Code Editor and add:
          var csv = this.dataInterface.getRawData(mstrmojo.models.template.DataInterface.ENUM_RAW_DATA_FORMAT.ROWS_ADV);
          before:
          d3.csv("data.csv",function(error,csv)){}
      • Tree data

        • Typically represented by d3.json("filename.json",function(error,json)){}
        • If a visualization expects tree data, you would use::
          var json = this.dataInterface.getRawData(mstrmojo.models.template.DataInterface.ENUM_RAW_DATA_FORMAT.TREE);
      Note: In some cases, it is not simple to replace the csv method with the MicroStrategy API. For these cases, make sure that the data variable has the MicroStrategy data and not the data being retrieved from the CSV file.
    14. Add debugger under var csv = this.dataInterface.getRawData(mstrmojo.models.template.DataInterface.ENUM_RAW_DATA_FORMAT.ROWS_ADV);and click Apply again.

      Note: You must have added a dataset before adding the debugger code described above. If you add the debugger code first and then add a dataset, the code is deleted.

      external image DebuggerCode2.png
    15. You can use the Console to find the format of the data that is being retrieved from MicroStrategy as follows:


      When you clicked Apply, the execution is stopped by debugger after the data was retrieved from MicroStrategy:


      external image DebuggerConsole4.png


      On the Console tab, type "csv", and then press Enter. The MicroStrategy data objects are displayed.


      In this example, you will see that the data being retrieved from MicroStrategy has a different format from the data being used by the author of this visualization:


      Format of MicroStrategy data:


      external image DebuggerConsole5.png


      Format of visualization (D3 Waterall Chart) data:


      external image DebuggerConsole3.png


      The main difference is that the MicroStrategy data has an object with the metric value. The visualization data does not have an object for the metric.


      Remove debugger: from the code and save the file.

    16. You need to add additional logic to modify the MicroStrategy data so that it looks more like the data expected by the visualization. In this example, you add the following code after the line of code that pulls the MicroStrategy data:

      var gridData = this.dataInterface;
      var rowHeaders = gridData.getRowHeaders();
      var attributeName = rowHeaders.titles[0].n;
      for (var i = 0; i < csv.length; i++) {
      for (var key in csv[i]) {
      if (key !== attributeName) {
      csv[i][key] = csv[i][key]["rv"] + "";
      }
      }
      }

      If the object key does not match the attribute name, then you set that property to be the value of the metric. Note that the value of the metric in this visualization data is a string. That is why an empty string is being added to the value: csv[i][key] = csv[i][key]["rv"] + "";

  1. After you add the code with the additional logic, add debugger; after the new block of code to check how the data looks now.

    external image DebuggerConsole8.png

    Click Apply. When the execution stops, open the Console, and type "csv". The csv variables now look more like the data coming from data.csv.

    external image DebuggerConsole9.png

    Remove debugger: from the code and save the file.
  2. Now that the format of the data matches, you can replace the content of the data variable with the MicroStrategy data. After the code that gets the data, add data = csv;.


    external image DebuggerConsole10.png


    Now data refers to the variable you added earlier to pull MicroStrategy data:

    var csv = this.dataInterface.getRawData(mstrmojo.models.template.DataInterface.ENUM_RAW_DATA_FORMAT.ROWS_ADV);


    To confirm that the correct data is being retrieved, add debugger; after data=csv;and click Apply. When the processing stops, open the Console and type "data". The data should look like MicroStrategy data.


    external image DebuggerConsole9.png

    Remove debugger; and save your file. Stop and start the Visualization Builder.

  3. Many of the visualizations available on the Internet are created exclusively for the data the author references. In this example, the author uses the attribute called “period”, which is hard-coded in three places in the JavaScript code. You must replace all instances of the string "period" with the name of your attribute variable, attributeName.
    In the additional code you added, you get the attribute, called attributeName, by using:


    var gridData = this.dataInterface;
    var rowHeaders = gridData.getRowHeaders();
    var attributeName = rowHeaders.titles[0].n;

    In this example, you are using the attribute name. If you wanted to get the metric name, you would use the following line of code:


    var gridData = this.dataInterface;
    var metricName = gridData.getColHeaders(0).getHeader(0).getName();

    Note: Make sure to use the correct syntax. If you are trying to access the property of an object, you have to use square brackets so that the expression is evaluated first and then the value is gotten. For example, this doesn’t work:


    data[0].attributeName

    but this will return “2010”.


    data[0][attributeName]

    Make the following replacements:


    Replace
    return key !== "period";
    with
    return key !== attributeName;
    Replace:
    x0.domain(data.map(function(d) { return d.period; }));
    with
    x0.domain(data.map(function(d) { return d[attributeName]; }));

    Replace:
    return "translate(" + x0(d.period) + ",0)";
    with
    return "translate(" + x0(d[attributeName]) + ",0)";
  4. Finally, modify the width and height of the visualization so that the screen adjusts correctly. Typically, the width and height of visualizations are defined as fixed values. These must be replaced so that the sizes reflect the available space in MicroStrategy. For example:


    var margin = {top: 10, right: 10, bottom: 10, left: 10},
    width = parseInt(this.width,10) - margin.left - margin.right,
    height = parseInt(this.height,10) - margin.top - margin.bottom;
  5. Save your visualization and click Apply again. The Waterfall Chart should be displayed with your MicroStrategy data.

    external image WaterfallChart_MstrData.png

Comments

  1. Hi,
    Its really helpful, thank you so much for sharing this with brief explanation.
    Do we need to add any piece of code to make them use as selector ? or MicroStrategy API handle it by itself.

    Thanks
    Sunil



    ReplyDelete
  2. Excellent article for the people who need information about this course.
    Learn Data Science Online

    ReplyDelete
  3. If you are looking to download an MTD template, you may need to specify which specific type of template you are referring to. For example, if you are a VAT-registered business in the UK and you want to submit your VAT returns through MTD, you may need to MTD template download VAT template that is compatible with the software you are using.

    ReplyDelete

Post a Comment

Popular posts from this blog

Case functions Microstrategy

Ca se functions Microstrategy Case functions return specified data in a SQL query based on the evaluation of user-defined conditions. In general, a user specifies a list of conditions and corresponding return values. Case This function evaluates multiple expressions until a condition is determined to be true, then returns a corresponding value. If all conditions are false, a default value is returned.  Case  can be used for categorizing data based on multiple conditions. This is a single-value function. Syntax Case ( Condition1 ,  ReturnValue1 ,  Condition2 , ReturnValue2 ,...,  DefaultValue ) Example Case(([Total Revenue] < 300000), 0, ([Total Revenue] < 600000), 1, 2) sum(Case (Day@DESC in (“Sat”,”Sun”), Sales, 0) {~+} Sum(Case(Category@DESC In("Books","Electronics"),Revenue,0)){~+} CaseV (case vector) CaseV  evaluates a single metric and returns different values according to the results. It can be used to perfo...

Microstrategy Dossiers explained

Microstrategy  Dossiers With the release of MicroStrategy 10.9, we’ve taken a leap forward in our dashboarding capabilities by simplifying the user experience, adding storytelling, and collaboration.MSTR has  evolved dashboards to the point that they are more than dashboards - they are  interactive, collaborative analytic stories . Ultimately, it was time to go beyond dashboards, both in concept and in name, and so  the've  renamed VI dashboards to  ‘ dossiers ’.  Dossiers can be created by using the new Desktop product or Workstation or simply from the Web interface which replaces Visual Insights. All the existing visual Insights dashboards will be converted to Dossiers   With MicroStrategy 10.9, there was an active focus on making it easier to build dashboards for the widest audience of end users. To achieve this, some key new capabilities were added that make it easier to author, read, interact and collaborate on dashboards ...

MicroStrategy URL API Parameters

MicroStrategy URL Structure The following table summarizes the root URL structure used for every request to MicroStrategy Web. Environment Main Application URL Administration URL J2EE http://webserver/MicroStrategy/servlet/mstrWeb http://webserver/MicroStrategy/servlet/mstrWebAdmin .NET http://webserver/MicroStrategy/asp/Main.aspx http://webserver/MicroStrategy/asp/Admin.aspx Every request sent to MicroStrategy Web calls a central controller. Parameters are appended to  Main.aspx  or  mstrWeb  (in a .NET and J2EE environment, respectively) to indicate to the controller how the request should be internally forwarded and handled. The following examples show a URL for accessing a MicroStrategy folder when the user does not have an existing session. The URL contains not only the parameters needed to connect to MicroStrategy Web, but also the parameters needed to log on and create a session. J2EE environment: <a href="http:...

Control the display of null and zero metric values

Show   Control the display of null and zero metric values in a grid report You can determine how to display or hide rows and columns in a grid report that consist only of null or zero metric values. You can have MicroStrategy hide the rows and columns in the following ways: Hide rows and columns that consist only of null metric values Hide rows and columns that consist only of zero metric values Hide rows and columns that consist only of null or zero metric values (default) Once you have defined how MicroStrategy hides null and zero metric values in the grid, you can quickly show or hide the grid using the Hide Nulls/Zeros option in the Data menu, as described below, or by clicking the  Hide Nulls/Zeros  icon  in the Data toolbar. To determine how null and zero metric values are displayed or hidden in a grid report Open the report in Edit mode. From the  Tools  menu, select  Report Options . The Report Options...

Display a report in different view modes through URL API in MicroStrategy Web

The URL parameter report view mode in Microstartegy visMode - the mode in which the document is displayed, e.g. 2 for Interactive reportviewmode  determines how reports are displayed in the view mode, e. g. 1 for grid mode. &reportViewMode=1 (grid) &reportViewMode=2 (graph) & reportViewMode=3 (grid/graph)  &visMode=0 (no visualization) &visMode=51 (AJAX visualization)  <--- this and Flash (50) require that you setup a Custom Visualization in the report definition.&visMode=50 (Flash visualization). M ake sure those modes are enabled in Document Properties. Other parameters in the URL API Webserver - name or IP address of the webserver  Evt - event/action to be performed, e.g. 2048001 for running a document  Src - web page component to perform the event  documentID - document object ID to be executed  The parameter to pass an answer to an element list prompt:  elementsPromptAnswers=AttrID;AttrID:E...

Microstrategy Caches explained

Microstrategy Caches Improving Response Time: Caching A  cache is a result set that is stored on a system to improve response time in future requests.  With caching, users can retrieve results from Intelligence Server rather than re-executing queries against a database. To delete all object caches for a project 1 In Developer, log into a project. You must log in with a user account that has administrative privileges. 2 From the  Administration  menu, point to  Projects , and then select  Project Configuration . The Project Configuration Editor opens. 3 Expand  Caching , expand  Auxiliary Caches , then select  Objects . To delete all configuration object caches for a server 1 Log in to the project source. 2 From the  Administration  menu in Developer, point to  Server , and then select  Purge Server Object Caches . 4 Click  Purge Now . To purge web cache follow the steps in the link ...

Apply or Pass-through functions in Microstrategy

Ap ply (Pass-Through) functions MSTR Apply functions provide access to functions or syntactic constructs that are not standard in MicroStrategy but are provided by various RDBMS systems.. Syntax common to Apply functions Apply Function Name   ("expression with placeholders", Arg1, Arg2, Arg3, …ArgN) where: Apply Function Name  – is a generic name used for the predefined pass-through functions described above expression with placeholders  – is the string describing the actual expression or syntax that the engine uses while generating the SQL and which is sent to the RDBMS. The placeholders are represented by #0, #1, and so on. "#" is a reserved character for MicroStrategy. Arg  – is an argument that replaces the parameter markers in the pattern. Arg1 replaces #0, Arg2 replaces #1, and so on. There are   five  pre-defined Apply functions to replace regular, predefined functions of the same type. For more details, cli...

Transaction Services - Configure Transactions

Configure Transactions in MSTR Web Transaction Services-enabled document displayed on an iPhone, iPad, or Android device can allow users to insert/update/delete data in to the database, using the options in the Configure Transactions Editor. To do so, you must link a Transaction Services report to a grid or to text fields in a panel stack. If the document is being displayed on an iOS device, you can link the report to the cells of a transaction table. Data from the input objects defined in the Transaction Services report is displayed in the grid, text fields, or cells for users to edit. Prerequisites:        Ø   You must have the Web Configure Transaction privilege assigned by MSTR user admin. Ø   Create the Transaction Services report (usually a grid report) you want to link to the grid, text fields, or transaction table cells. Make sure that the Transaction Services report must contain the input object for each value you w...

Types of filters in Microstrategy

Types of filters in Microstrategy Below are the types of filters: 1. Attribute qualification filter These types of qualifications restrict data related to attributes on the report. a) Attribute form qualification Filters data related to a business attribute’s form(s), such as ID or description. •  For example, the attribute Customer has the forms ID, First Name, Last Name, Address, and Birth Date. An attribute form qualification might filter on the form Last Name, the operator Begins With, and the letter H. The results show a list of customers whose last names start with the letter H. b) Attribute element list qualification Filters data related to a business attribute’s elements, such as New York, Washington, and San Francisco, which are elements of the attribute City. • For example, the attribute Customer has the elements John Smith, Jane Doe, William Hill, and so on. An attribute element list qualification can filter data to display only those customer...

Time-based and event-based schedules

Time-based and event-based schedules executed in a clustered MicroStrategy A  schedule  is a MicroStrategy object that contains information specifying when a task is to be executed. Schedules are stored at the project source level, and are available to all projects within the project source. MicroStrategy Intelligence Server supports two kinds of schedules: Time-triggered schedules execute at a specific date and time, or at a specific recurring date and time. These schedules execute based on the time on the machine where they were created. Event-triggered schedules execute when the event associated with them is triggered. Both types of schedules can be used to schedule reports and documents, called subscriptions, or to schedule administrative tasks like delete all history list, idle project, etc. Execution of Time-Based Schedules in a MicroStrategy Intelligence Server Cluster: In a 9.x MicroStrategy Intelligence Server clustered environment, subscriptions...