Search the Community
Showing results for tags 'jsp'.
Found 3 results
-
My web application is meant to be able to export server-side generated charts with a save button. However, upon trying to save any charts that have been displayed in the application, I am greeted with a 404 error page from JBoss. I'm running Linux Mint 17.3. The web application runs on top of Apache, JBoss 3.0.0-CR2, and Java SDK 1.7. It was built with Maven. I've attached a screenshot below. My question is this: why am I getting a 404 error, and where does the issue actually come from?
-
Hi Team. We have generated two reports using JSPs. (Main & Sub report). Both are JSP pages & report is generating perfectly. We want to link both the charts. When click on pie chart in the first chart, it should navigate to second chart. Both used the web services internally with JSP useBean tags. Attached the Main JSP here for your reference. How to link the second JSP in this chart. ------------------------------------------------------------------------------------------- <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%> <%@ taglib uri="http://www.fusioncharts.com/jsp/core"prefix="fc"%> <%@page import="org.json.JSONObject"%> <% /* In this page the chart is finally displayed. */ %> <c:set var="folderPath" value="../Chart/FusionCharts/" /> <c:set var="jsPath" value="${folderPath}" scope="request" /> <script src="${jsPath}fusioncharts.js"></script> <jsp:useBean id="product" class="com.aasc.model.DataBean"> <c:set var="jsonArray" value="${product.jsonArray}"/> <c:set var="chartId" value="NormalCahrt"/> <c:set var="chartType" value="pie3d"/> <c:set var="caption" value="AA-Freight Audit Report"/> <c:set var="subCaption" value="UPS"/> <c:set var="paletteColors" value="#f2c500,#f45b00,#8e0000"/> <c:set var="width" value="500"/> <c:set var="height" value="300"/> <c:set var="exportEnabled" value="1"/> <c:set var="enableSmartLabels" value="0"/> <c:set var="showLegend" value="1"/> <c:set var="legendBorderAlpha" value="0"/> <c:set var="captionFontSize" value="20"/> <c:set var="subcaptionFontSize" value="16"/> <c:set var="useDataPlotColorForLabels" value="1"/> <% JSONObject chartObject = new JSONObject(); chartObject.put("caption", pageContext.getAttribute("caption")); chartObject.put("subcaption", pageContext.getAttribute("subCaption")); chartObject.put("paletteColors", pageContext.getAttribute("paletteColors")); chartObject.put("exportEnabled", pageContext.getAttribute("exportEnabled")); chartObject.put("showLegend", pageContext.getAttribute("showLegend")); chartObject.put("legendBorderAlpha", pageContext.getAttribute("legendBorderAlpha")); chartObject.put("enableSmartLabels", pageContext.getAttribute("enableSmartLabels")); chartObject.put("captionFontSize", pageContext.getAttribute("captionFontSize")); chartObject.put("subcaptionFontSize", pageContext.getAttribute("subcaptionFontSize")); chartObject.put("useDataPlotColorForLabels", pageContext.getAttribute("useDataPlotColorForLabels")); //put all together in final JSON Object JSONObject jsonObject = new JSONObject(); jsonObject.put("chart", chartObject); jsonObject.put("data", pageContext.getAttribute("jsonArray")); String json = jsonObject.toString(); pageContext.setAttribute("json", json); %> <fc:render chartId="${chartId }" swfFilename="${chartType}" width="${width}" height="${height}" debugMode="false" registerWithJS="false" jsonData="${json}" /> </jsp:useBean> <br /> <br /> ----------------------------------------------------------------- Best Regards, Varma
-
Fusion Chart not loaded Property if we user <base href=""> property
viral069 posted a topic in FusionCharts and JSP
Dear All, I have one JSP Page which include simple Heat Chart, I found one problem that if we use <base ..> html tag that chart not getting render properly. JSP Code: <!DOCTYPE html> <%@ page isThreadSafe="false"%> <% String path = request.getContextPath(); String basePath = request.getScheme() + "://" + request.getServerName() + ":" + request.getServerPort() + path + "/"; %> <html> <head> <base href="<%=basePath%>" /> <title>Buzzor</title> <script type="text/javascript" src="js/fusioncharts/fusioncharts.js"></script> <script type="text/javascript"> FusionCharts.ready(function () { var salesHMChart = new FusionCharts({ type: 'heatmap', renderAt: 'chart-container', width: '550', height: '270', dataFormat: 'json', dataSource: { "chart": { "caption": "Top Smartphone Ratings", "subcaption": "By Features", "xAxisName":"Features", "yAxisName":"Model", "showplotborder": "1", "xAxisLabelsOnTop": "1", "plottooltext":"<div id='nameDiv' style='font-size: 12px; border-bottom: 1px dashed #666666; font-weight:bold; padding-bottom: 3px; margin-bottom: 5px; display: inline-block; color: #888888;' >$rowLabel :</div>{br}Rating : <b>$dataValue</b>{br}$columnLabel : <b>$tllabel1</b>{br}<b>$trLabel</b>", "theme" : "carbon" }, "rows": { "row": [ { "id": "SGS5", "label": "Samsung Galaxy S5" }, { "id": "HTC1M8", "label": "HTC One (M8)" }, { "id": "IPHONES5", "label": "Apple iPhone 5S" }, { "id": "LUMIA", "label": "Nokia Lumia 1520" } ] }, "columns": { "column": [ { "id": "processor", "label": "Processor" }, { "id": "screen", "label": "Screen Size" }, { "id": "price", "label": "Price" }, { "id": "backup", "label": "Battery Backup" } , { "id": "cam", "label": "Camera" } ] }, "dataset": [ { "data": [ { "rowid": "SGS5", "columnid": "processor", "value": "8.7", "tllabel1": "Quad Core 2.5 GHz", "trlabel": "OS : Android 4.4 Kitkat" }, { "rowid": "SGS5", "columnid": "screen", "value": "8.5", "tllabel1": "5.1 inch", "trlabel": "AMOLED screen" }, { "rowid": "SGS5", "columnid": "price", "value": "9.3", "tllabel1": "$600" }, { "rowid": "SGS5", "columnid": "backup", "value": "9.7", "tllabel1": "29 Hrs", "trlabel": "Battery : 2800 MAH" }, { "rowid": "SGS5", "columnid": "cam", "value": "8", "tllabel1": "16 MP", "trlabel": "Front Camera : 2.1 MP" }, { "rowid": "HTC1M8", "columnid": "processor", "value": "9.2", "tllabel1": "Quad Core 2.3 GHz", "trlabel": "OS : Android 4.4 Kitkat" }, { "rowid": "HTC1M8", "columnid": "screen", "value": "8.3", "tllabel1": "5 inch", "trlabel": "LCD screen" }, { "rowid": "HTC1M8", "columnid": "price", "value": "7.3", "tllabel1": "$600" }, { "rowid": "HTC1M8", "columnid": "backup", "value": "8.8", "tllabel1": "20 Hrs", "trlabel": "Battery : 2600 MAH" }, { "rowid": "HTC1M8", "columnid": "cam", "value": "8.7", "tllabel1": "4 MP", "trlabel": "Front Camera : 5 MP" }, { "rowid": "IPHONES5", "columnid": "processor", "value": "9.1", "tllabel1": "Dual Core", "trlabel": "OS : iOS 7" }, { "rowid": "IPHONES5", "columnid": "screen", "value": "8.6", "tllabel1": "4 inch", "trlabel": "Retina LCD screen" }, { "rowid": "IPHONES5", "columnid": "price", "value": "7.2", "tllabel1": "$649" }, { "rowid": "IPHONES5", "columnid": "backup", "value": "8.4", "tllabel1": "10 Hrs", "trlabel": "Battery : 1560 MAH" }, { "rowid": "IPHONES5", "columnid": "cam", "value": "9.5", "tllabel1": "8 MP", "trlabel": "Front Camera : 1.2 MP" }, { "rowid": "LUMIA", "columnid": "processor", "value": "8.8", "tllabel1": "Quad Core 2.2 GHz", "trlabel": "OS: Windows Phone 8" }, { "rowid": "LUMIA", "columnid": "screen", "value": "9.1", "tllabel1": "6 inch", "trlabel": "LCD screen" }, { "rowid": "LUMIA", "columnid": "price", "value": "9.7", "tllabel1": "$470" }, { "rowid": "LUMIA", "columnid": "backup", "value": "9.2", "tllabel1": "27 Hrs", "trlabel": "Battery : 3400 MAH" }, { "rowid": "LUMIA", "columnid": "cam", "value": "8.1", "tllabel1": "20MP", "trlabel": "Front Camera : 1.2 MP" } ] } ], "colorrange": { "gradient": "0", "minvalue": "0", "code": "E24B1A", "startlabel": "Poor", "endlabel": "Good", "color": [ { "code": "E24B1A", "minvalue": "1", "maxvalue": "5", "label": "Bad" }, { "code": "F6BC33", "minvalue": "5", "maxvalue": "8.5", "label": "Average" }, { "code": "6DA81E", "minvalue": "8.5", "maxvalue": "10", "label": "Good" } ] } } }); salesHMChart.render('chart-container'); }); </script> </head> <body> <div id='chart-container'>FusionCharts XT will load here!</div> </body> </html> Please guide me why its create a problem if i use base tag of html. if i remove base tag that its working fine. I need to know that it the alternative solution for resolving this problem. I have also attached sample output of chart Thanks in Advance- 3 replies
-
- fusion chart
- bas tag
-
(and 1 more)
Tagged with: