javascript - How to remove the web address from graph in HTML -


I am creating graph in HTML, I'm using API AMCharts, but the problem is that it is " Amchart "indicates text

How can I remove that text so that it looks okay?

  & lt; Html & gt; & Lt; Top & gt; & Lt; Meta http-equiv = "content-type" content = "text / html; charset = UTF-8" & gt; & Lt; Title & gt; Chart & lt; / Title & gt; & Lt; Link rel = "stylesheet" href = "style.css" type = "text / css" & gt; & Lt; Script src = "amcharts.js" type = "text / javascript" & gt; & Lt; / Script & gt; & Lt; Script type = "text / javascript" & gt; Var chart; Var chartData = [Country: "United States", Visits: 400, Color: "#FFFF200"}, {Country: "China", Visits: 380, Color: "#FF 6600"}, {Country: Japan ", Visits: 360, Color:" #FF9E01 "}, {Country:" Germany ", Visits: 340, Color:" # FCD 202 "}, {Country:" UK ", Visits: 320, Color: "Country:" "Spain", Travel: 300, Color: "# BDD 9"}, {Country: "India", Visits: 240, Color: "# 04D215"}, {Country : "Country", "Netherlands", Visits: 140, Color: "# 0D52D1"}, {Country: "Russia", Visits: 100, Color: "# 2A0CD0 "}, {Country:" South Korea ", Vij Title: 80, Color: "# 8A0CCF"}, {Country: "Canada", Visits: 20, Color: "# CD0D74"}]; AmCharts.ready (function () {chart = New AmCharts.AmSerialChart (); chart .dataProvider = chartData; chart.categoryField = "country"; chart.startDuration = 1; // AXES // range var rangeEXx = charts categoryAxis; CategoryAxis.labelRotation = 45; // This line is to rotate the class category Square axis grid elph = 0; range axis.philpha = 1; range axis. Filler = "#FAFAFA"; rangexis.grid = "start"; // value var value axis = new AmCharts.ValueAxis (); ValueAxis.dashLength = 5; ValueAxis.title = "visitor to country" valueXx.axisAlpha = 0; Chart.addValueAxis (valueAxis); // GRAPH var graph = new AmCharts.AmGraph (); Article .valueField = "visits"; Graph.colorField = "color"; Graph.balloonText = "[[category]]: [[value]]"; Graph.type = "column"; Graph.lineAlpha = 0; Graph.fillAlphas = 1; Chart.edgraf (article); // writing charts Write ("chartdiv"); }); & Lt; / Script & gt; & Lt; / Head & gt; & Lt; Body & gt; & Lt; Div id = "chartdiv" style = "width: 600px; height: 500px;" & Gt; & Lt; / Div & gt; & Lt; / Body & gt; & Lt; / Html & gt;  

From:

You can download And the free range of free version of all AmCharts products available is that a small link on this website will be displayed in the top left corner of your chart. If you want to use the chart without this link, or you appreciate the software and want to help your manufacturer, please buy a business license.

So you need to buy a business license.


Comments

Popular posts from this blog

Python SQLAlchemy:AttributeError: Neither 'Column' object nor 'Comparator' object has an attribute 'schema' -

java - How not to audit a join table and related entities using Hibernate Envers? -

mongodb - CakePHP paginator ignoring order, but only for certain values -