Click here to Skip to main content
15,885,782 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
XML
<%@ Page Language="VB" AutoEventWireup="false" CodeFile="Ajex.aspx.vb" Inherits="Ajex" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title>Untitled Page</title>
    <link href="Scripts/jqplot/jquery.jqplot.css" rel="stylesheet" type="text/css" />
    <link rel="stylesheet" type="text/css" href="Scripts/jqplot/jquery.jqplot.css" />
    <link rel="stylesheet" type="text/css" href="Scripts/jqplot/jquery.jqplot.min.css" />

    <script src="Scripts/jqplot/jquery-1.4.1.min.js" type="text/javascript"></script>
    <script type="text/javascript" src="Scripts/jqplot/jquery.jqplot.min.js"></script>
    <script language="javascript" type="text/javascript" src="Scripts/jqplot/plugins/jqplot.barRenderer.min.js"></script>

</head>
<body>
    <form id="form1" runat="server">
    <div id="chartdiv" style="margin-top:20px; margin-left:20px; width:300px; height:300px;"></div>
    <script>
        $.jqplot('chartdiv',  [[34.53, 56.32, 25.1, 18.6]], {series:[{renderer:$.jqplot.BarRenderer}]});
    </script>
    </form>
</body>
</html>


Above code for draw chart But not draw when i run application .i don not know what is problem.i use jqplot api for draw chart.please give me answer if you are know.
Posted

1 solution

You may switch to google charts, they are the best and dynamic.
https://developers.google.com/chart/[^]
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900