Issue I’m trying to create a chart using the the Chart.JS library, but I get the following error: Uncaught ReferenceError: options is not defined I’ve followed the documentation, but perhaps I’m missing something. See here for my codepen example. <html>
Continue readingTag: charts
[SOLVED] Azure KQL – Create Total Average Line on top of timechart
Issue I have some data that I’m logging from our internal label print system. I want to see the duration of each request in a timechart, but would also like to have a total average line on top of the
Continue reading[SOLVED] How to make a program that will display a graph depending on number inputted in?
Issue So I want to create a program that will display a graph depending on the number placed in by the user, it will ask for the number of days, then depending on the number of days, it will ask
Continue reading[SOLVED] Plotting a chart inside a PyQT GUI
Issue I would like to plot a chart inside a pyQT GUI. I have already read a lot of tutorials, but those plot the chart in a separeted window. I need it to be ploted in the same window as
Continue reading[SOLVED] How to scrape Data from the chart in this Page?
Issue I am looking for a way to scrape datas from this website using Selenium. I am talking about the Floor price history chart in the page shared. I unfortunately have no idea on how to scrape charts so I
Continue reading[SOLVED] How to superimpose two ts objects with two different axes with ts.plot in R?
Issue library(tseries) library(readxl) data = read_excel(…….) #Create tseries equity = ts(data$EQUITY, start = c(2015,01,01), end = c(2020,01,01), frequency = 12) cci = ts(data$CCI, start = c(2015,01,01), end = c(2020,01,01), frequency = 12) #Plot the two series together ts.plot(equity, cci, lty
Continue reading[SOLVED] HighCharts in Laravel Errors
Issue Hello Everyone i have this trouble now with my laravel project i am trying to add pie chart from highcharts, i added the javascrips in home.blade. But a got this issue and i need to resolve, look at this.
Continue reading[SOLVED] Is it possible to generate multiple chart in Laravel using chartjs ? If possible please give the solution
Issue My blade file code is: @foreach ($radio_data as $data) <div style="text-align: center" class="row"> <div class="col-md-4 text-center" > <canvas id="myChart"></canvas> </div> </div> @php array_push($dataPoints, array("label"=> " $data->answer ", "y"=> $data->num )); @endphp <p>{{ $data->answer }}: {{ $data->num }}</p> @endforeach I
Continue reading[SOLVED] Why moveViewToX() won't move my display to the last value in my bar chart? – Swift
Issue I’m new to Swift and I’m trying to create bar chart. I manage to create a chart but for some reason moveViewToX() does not work as expected – it does not scroll to the last x values. Here is
Continue reading[SOLVED] How to create a BarChart from fetched data from CoreData?
Issue I’m trying to create a barchart from fetched data from a CoreData model. I’m trying to use https://github.com/AppPear/ChartView in particular the release v1.5.5. The request returns me from the database an array of Entities, let’s say its [Entity]. (Entity
Continue reading