I have a .json document that I keep with MySQL in my database and it contains the following:
{
"ticker": {
"base": "BTC",
"target": "USD",
"price": "9330.81745211",
"volume": "53283.57785327",
"c...
I use a function in java script, which uses a static method to query the server, obtaining as a response a DataSet with several tables sereializado as object JSON
(string json = JsonConvert.SerializeObject(_dsCon);)
and...
I have two select and a text box, by means of which I send values to query.php the selected values of the select are the most important for me because it depends on which user selects that values will be passed to some queries with which their v...
I'm trying to change the label color of the third column of each segment in the graph, the problem I have is that I can not do it based on the value of the first column against the third.
The first segment says Front 01 and the goal column is...
Good, I'm using Highstock of Highcharts in angular 2 , and the axis of x is of type datetime , the data I charge is a value and a specific time for each value. The time in my region is not the UTC , and when the graph is displ...
Good morning, the example I should show is like the following
link
here is where the data is collected
var chartseries = [{
name: 'Year 1800',
data: [107, 31, 635, 203, 2]
}, {
n...
Dear, the following code does not work for me, I do not know what is the part I am doing wrong, this is the code:
I wanted to see a line chart of the api highcharts
<?php
$dbname = 'db';
$m = new MongoClient();
$db = $m->$dbname;
$c...
I continue to learn to use details of higcharts and now what I want to do is that with the following I can visualize 3 lines at the same time and then activate or deactivate them when I want to
DotNet.Highcharts.Highcharts chart = new DotNet.H...
I am working with Highcharts and I am showing information from my database in the following way:
data: [<?php
if ($result->num_rows > 0) {
while($row = $result->fetch_assoc()) {
echo "[Date.UTC("...
Dear.
I have a chart made with highchart, which takes data from a base in mysql.
I need to send two data through ajax, the range of dates, start and end date.
This is the code portion of the ajax.
The file is called index.php
<script>...