Skip to main content

Google Charts Options and Javascript Syntax

I have a javascript function that succesfully draws a line chart using the google charts api.

google.load('visualization', '1.1', { packages: ['corechart'] });
google.setOnLoadCallback(drawChart);

function drawChart() {

    var data = new google.visualization.DataTable();
    data.addColumn('number', 'Day In Theater');
    data.addColumn('number', 'Movie 1');
    data.addColumn('number', 'Movie 2');
    data.addColumn('number', 'Movie 3');

    data.addRows([
        [1,   37.8, 80.8, 41.8],
        [2,   30.9, 69.5, 32.4],
        [3,   25.4, 57, 25.7],
        [4,   11.7, 18.8, 10.5],
        [5,   11.9, 17.6, 10.4],
        [6,   8.8, 13.6, 7.7],
        [7,   7.6, 12.3, 9.6],
        [8,   12.3, 29.2, 10.6],
        [9,   16.9, 42.9, 14.8],
        [10,   12.8, 30.9, 11.6],
        [11,   5.3, 7.9, 4.7],
        [12,   6.6, 8.4, 5.2],
        [13,   4.8, 6.3, 3.6],
        [14,   4.2, 6.2, 3.4]
    ]);

    // var Series_To_Highlight=1;

    var options = {
        chart: {
            title: 'Box Office Earnings in First Two Weeks of Opening',
            subtitle: 'in millions of dollars (USD)'
        },
        series: {
            1: { lineWidth: 5 },
        },
        width: 900,
        height: 500
    };

    var chart = new google.visualization.LineChart(document.getElementById('chart'));

    chart.draw(data, options);
}
<script type="text/javascript" src="https://www.gstatic.com/charts/loader.js"></script>

<div id='chart' style='width:800px;height:400px;'></div>

I am trying to highlight one of the series. When I hard-code the series I want to highlight, all goes well.

var options = {
    chart: {
        title: 'Box Office Earnings in First Two Weeks of Opening',
        subtitle: 'in millions of dollars (USD)'
    },
    series: {
        1: { lineWidth: 5 },
    },
    width: 900,
    height: 500
};

However, when the series I want to highlight is a variable, it doesn't work...

    var Series_To_Highlight=1;

    var options = {
        chart: {
            title: 'Box Office Earnings in First Two Weeks of Opening',
            subtitle: 'in millions of dollars (USD)'
        },
        series: {
            Series_To_Highlight: { lineWidth: 5 },
        },
        width: 900,
        height: 500
    };

Any advice? Thanks

Via Active questions tagged javascript - Stack Overflow https://ift.tt/mrOCHFT

Comments

Popular posts from this blog

Confusion between commands.Bot and discord.Client | Which one should I use?

Whenever you look at YouTube tutorials or code from this website there is a real variation. Some developers use client = discord.Client(intents=intents) while the others use bot = commands.Bot(command_prefix="something", intents=intents) . Now I know slightly about the difference but I get errors from different places from my code when I use either of them and its confusing. Especially since there has a few changes over the years in discord.py it is hard to find the real difference. I tried sticking to discord.Client then I found that there are more features in commands.Bot . Then I found errors when using commands.Bot . An example of this is: When I try to use commands.Bot client = commands.Bot(command_prefix=">",intents=intents) async def load(): for filename in os.listdir("./Cogs"): if filename.endswith(".py"): client.load_extension(f"Cogs.{filename[:-3]}") The above doesnt giveany response from my Cogs ...

How to show number of registered users in Laravel based on usertype?

i'm trying to display data from the database in the admin dashboard i used this: <?php use Illuminate\Support\Facades\DB; $users = DB::table('users')->count(); echo $users; ?> and i have successfully get the correct data from the database but what if i want to display a specific data for example in this user table there is "usertype" that specify if the user is normal user or admin i want to user the same code above but to display a specific usertype i tried this: <?php use Illuminate\Support\Facades\DB; $users = DB::table('users')->count()->WHERE usertype =admin; echo $users; ?> but it didn't work, what am i doing wrong? source https://stackoverflow.com/questions/68199726/how-to-show-number-of-registered-users-in-laravel-based-on-usertype

Why is my reports service not connecting?

I am trying to pull some data from a Postgres database using Node.js and node-postures but I can't figure out why my service isn't connecting. my routes/index.js file: const express = require('express'); const router = express.Router(); const ordersCountController = require('../controllers/ordersCountController'); const ordersController = require('../controllers/ordersController'); const weeklyReportsController = require('../controllers/weeklyReportsController'); router.get('/orders_count', ordersCountController); router.get('/orders', ordersController); router.get('/weekly_reports', weeklyReportsController); module.exports = router; My controllers/weeklyReportsController.js file: const weeklyReportsService = require('../services/weeklyReportsService'); const weeklyReportsController = async (req, res) => { try { const data = await weeklyReportsService; res.json({data}) console...