Welcome to Knowage Q&A, where you can ask questions and receive answers from other members of the community.
0 votes
1 view
Hi Team,

I am tring to a create chart using template.

I have selected following option at the time of chart creation

Type: chart

Engine: chart engine

State: released

But after executing a chart, i am getting blank page with a line as 'Downloading...'

Using same data set, if i create a chart using Template build option, it works fine.

But if i upload template, it is not showing output (getting blank page).
Environment knowage CE 6.0
in Workspace by (460 points)
retagged by
Dear

can you better explain what type of template did you use ?

Because knowage chart engine works only with template created by its designer.

Best Regards

Angelo
I am using XML template.
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!-- see ExtJS 4' documentation to view all possible options (http://docs.sencha.com/ext-js/4-0/#!/guide/drawing_and_charting) -->
<EXTCHART height='500' width='700' animate='true' shadow='true'>
  <!-- Legend object properties  -->
  <LEGEND position='bottom'/>
   
  <!-- title object properties -->
  <TITLE text='Test BAR Line Chart - 2Feb2016'>
    <STYLE color='#003366' fontWeight='bold' fontSize='16px' />
  </TITLE>
  
  <!-- subtitle object properties -->
  <SUBTITLE text='Monthly detail'>
      <STYLE color='#8C4A4A' fontWeight='bold' fontSize='14px' />
  </SUBTITLE>
   
  <COLORS color="#8C4A4A,#C9B385, #0C2D83" />
  <AXES_STYLE color='#C6DBEF' fontWeight='bold' fontSize='14px' fontFamily='Arial' />
  <LABELS_STYLE color='#6D869F' fontWeight='bold' fontSize='14px' fontFamily='Arial' />
  
  <!-- Axis properties  -->
  <AXES_LIST>
    <AXES title='Values' type='Numeric' minimum='0' position='left' fields_list="SALES_STORE,COSTS_STORE">
      <GRID>
        <ODD opacity='1' fill='#ddd' stroke='#bbb' stroke-width='0.5'/>
      </GRID>
    </AXES>
    <AXES title='Revenues' type='Numeric' position='right' fields='REVENUE'/>
    <AXES title='Month' type='Category' position='bottom' fields='x'/>
  </AXES_LIST>
   
  <!-- Series properties  -->
  <SERIES_LIST>
     <SERIES type='column' axis='right' fill='true' xField='x' yField='REVENUE' smooth='true' >       
      <TIPS trackMouse='true' width='140' height='28' />
      <MARKER_CONFIG type='circle' size='4' radius='4' />
    </SERIES>
    <SERIES type='line' axis='left'  xField='x' yField='SALES_STORE' >       
      <TIPS trackMouse='true' width='140' height='28'/>
        <MARKER_CONFIG type='cross' size='4' radius='4' />
    </SERIES>
    <SERIES type='line' axis='left' xField='x' yField='COSTS_STORE'>
          <TIPS trackMouse='true' width='140' height='28' />       
      <MARKER_CONFIG type='circle' size='4' radius='4' />
    </SERIES>
  </SERIES_LIST>
</EXTCHART>

1 Answer

0 votes
Dear Pune,

You can NOT use SpagoBI Template to create charts, you have to use a new designer only.

Best Regards

A.
by (20.7k points)
Will u please provide me a sample of new designer ?
Thanks abernabei
...