Package com.tonbeller.jpivot.chart

Examples of com.tonbeller.jpivot.chart.ChartComponent


    /*String spagoBIBaseUrl = (String) session.getAttribute("spagobiurl");
    String jcrPath = (String) session.getAttribute("templatePath");
    String user = (String) session.getAttribute("user");
    String userUniqueIdentifier = (String)((UserProfile) profile).getUserUniqueIdentifier();*/   
    if (query != null) {
      ChartComponent chart = (ChartComponent) session.getAttribute("chart01");
      TableComponent table = (TableComponent) session.getAttribute("table01");
      AnalysisBean analysis = (AnalysisBean) session.getAttribute("analysisBean");
      analysis = AnalysisAdapterUtil.createAnalysisBean(analysis.getConnectionName(), analysis.getCatalogUri(),
          analysis.getCatalog(),
          chart, table, olapModel);
View Full Code Here


    MdxQuery mdxQuery = (MdxQuery) olapModel.getExtension("mdxQuery");
    if (mdxQuery != null) {
      query = mdxQuery.getMdxQuery();
    }
    if (query != null) {
      ChartComponent chart = (ChartComponent) session.getAttribute("chart01");
      TableComponent table = (TableComponent) session.getAttribute("table01");
      AnalysisBean analysis = (AnalysisBean) session.getAttribute("analysisBean");
      analysis = AnalysisAdapterUtil.createAnalysisBean(analysis.getConnectionName(), analysis.getCatalogUri(),
        chart, table, olapModel);
        XStream dataBinder = new XStream();
View Full Code Here

    logger.debug("Entering service method");
   
    // retrieves analysis information from session
    HttpSession session = request.getSession();
    OlapModel olapModel = (OlapModel) session.getAttribute("query01");
    ChartComponent chart = (ChartComponent) session.getAttribute("chart01");
    TableComponent table = (TableComponent) session.getAttribute("table01");
    AnalysisBean analysis = (AnalysisBean) session.getAttribute("analysisBean");
    analysis = AnalysisAdapterUtil.createAnalysisBean(analysis.getConnectionName(), analysis.getCatalogUri(),
      chart, table, olapModel);
    // stores current analysis information on session
View Full Code Here

TOP

Related Classes of com.tonbeller.jpivot.chart.ChartComponent

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