Sample code for 30+ languages & platforms
Rust

Google Sheets Conditional Formatting - Color Gradient

See more Google Sheets Examples

Add a conditional color gradient across a row

Chilkat Rust Downloads

Rust

// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.

let http = chilkat::Http::new();

// Implements the following CURL command:

// curl -H "Content-Type: application/json" \
//    -H "Authorization: Bearer ACCESS_TOKEN" \
//    -X POST \
//    -d '{
//   "requests": [
//     {
//       "addConditionalFormatRule": {
//         "rule": {
//           "ranges": [
//             {
//               "sheetId": sheetId,
//               "startRowIndex": 9,
//               "endRowIndex": 10,
//             }
//           ],
//           "gradientRule": {
//             "minpoint": {
//               "color": {
//                 "green": 0.2,
//                 "red": 0.8
//               },
//               "type": "MIN"
//             },
//             "maxpoint": {
//               "color": {
//                 "green": 0.9
//               },
//               "type": "MAX"
//             },
//           }
//         },
//         "index": 0
//       }
//     },
//     {
//       "addConditionalFormatRule": {
//         "rule": {
//           "ranges": [
//             {
//               "sheetId": sheetId,
//               "startRowIndex": 10,
//               "endRowIndex": 11,
//             }
//           ],
//           "gradientRule": {
//             "minpoint": {
//               "color": {
//                 "green": 0.8,
//                 "red": 0.8
//               },
//               "type": "NUMBER",
//               "value": "0"
//             },
//             "maxpoint": {
//               "color": {
//                 "blue": 0.9,
//                 "green": 0.5,
//                 "red": 0.5
//               },
//               "type": "NUMBER",
//               "value": "256"
//             },
//           }
//         },
//         "index": 1
//       }
//     },
//   ]
// }' https://sheets.googleapis.com/v4/spreadsheets/{spreadsheetId}:batchUpdate

// Use the following online tool to generate HTTP code from a CURL command
// Convert a cURL Command to HTTP Source Code

// Use this online tool to generate code from sample JSON:
// Generate Code to Create JSON

// The following JSON is sent in the request body.

// {
//   "requests": [
//     {
//       "addConditionalFormatRule": {
//         "rule": {
//           "ranges": [
//             {
//               "sheetId": sheetId,
//               "startRowIndex": 9,
//               "endRowIndex": 10
//             }
//           ],
//           "gradientRule": {
//             "minpoint": {
//               "color": {
//                 "green": 0.2,
//                 "red": 0.8
//               },
//               "type": "MIN"
//             },
//             "maxpoint": {
//               "color": {
//                 "green": 0.9
//               },
//               "type": "MAX"
//             }
//           }
//         },
//         "index": 0
//       }
//     },
//     {
//       "addConditionalFormatRule": {
//         "rule": {
//           "ranges": [
//             {
//               "sheetId": sheetId,
//               "startRowIndex": 10,
//               "endRowIndex": 11
//             }
//           ],
//           "gradientRule": {
//             "minpoint": {
//               "color": {
//                 "green": 0.8,
//                 "red": 0.8
//               },
//               "type": "NUMBER",
//               "value": "0"
//             },
//             "maxpoint": {
//               "color": {
//                 "blue": 0.9,
//                 "green": 0.5,
//                 "red": 0.5
//               },
//               "type": "NUMBER",
//               "value": "256"
//             }
//           }
//         },
//         "index": 1
//       }
//     }
//   ]
// }

let sheet_id = "YOUR_SHEET_ID".to_string();

let json = chilkat::JsonObject::new();
let _ = json.update_string("requests[0].addConditionalFormatRule.rule.ranges[0].sheetId", &sheet_id);
let _ = json.update_int("requests[0].addConditionalFormatRule.rule.ranges[0].startRowIndex", 9);
let _ = json.update_int("requests[0].addConditionalFormatRule.rule.ranges[0].endRowIndex", 10);
let _ = json.update_number("requests[0].addConditionalFormatRule.rule.gradientRule.minpoint.color.green", "0.2");
let _ = json.update_number("requests[0].addConditionalFormatRule.rule.gradientRule.minpoint.color.red", "0.8");
let _ = json.update_string("requests[0].addConditionalFormatRule.rule.gradientRule.minpoint.type", "MIN");
let _ = json.update_number("requests[0].addConditionalFormatRule.rule.gradientRule.maxpoint.color.green", "0.9");
let _ = json.update_string("requests[0].addConditionalFormatRule.rule.gradientRule.maxpoint.type", "MAX");
let _ = json.update_int("requests[0].addConditionalFormatRule.index", 0);
let _ = json.update_string("requests[1].addConditionalFormatRule.rule.ranges[0].sheetId", &sheet_id);
let _ = json.update_int("requests[1].addConditionalFormatRule.rule.ranges[0].startRowIndex", 10);
let _ = json.update_int("requests[1].addConditionalFormatRule.rule.ranges[0].endRowIndex", 11);
let _ = json.update_number("requests[1].addConditionalFormatRule.rule.gradientRule.minpoint.color.green", "0.8");
let _ = json.update_number("requests[1].addConditionalFormatRule.rule.gradientRule.minpoint.color.red", "0.8");
let _ = json.update_string("requests[1].addConditionalFormatRule.rule.gradientRule.minpoint.type", "NUMBER");
let _ = json.update_string("requests[1].addConditionalFormatRule.rule.gradientRule.minpoint.value", "0");
let _ = json.update_number("requests[1].addConditionalFormatRule.rule.gradientRule.maxpoint.color.blue", "0.9");
let _ = json.update_number("requests[1].addConditionalFormatRule.rule.gradientRule.maxpoint.color.green", "0.5");
let _ = json.update_number("requests[1].addConditionalFormatRule.rule.gradientRule.maxpoint.color.red", "0.5");
let _ = json.update_string("requests[1].addConditionalFormatRule.rule.gradientRule.maxpoint.type", "NUMBER");
let _ = json.update_string("requests[1].addConditionalFormatRule.rule.gradientRule.maxpoint.value", "256");
let _ = json.update_int("requests[1].addConditionalFormatRule.index", 1);

// Adds the "Authorization: Bearer ACCESS_TOKEN" header.
http.set_auth_token("ACCESS_TOKEN");
http.set_request_header("Content-Type", "application/json");

let resp = chilkat::HttpResponse::new();
if http.http_json("POST", "https://sheets.googleapis.com/v4/spreadsheets/{spreadsheetId}:batchUpdate", &json, "application/json", &resp).is_err() {
    println!("{}", http.last_error_text());
    return;
}

println!("Status code: {}", resp.status_code());
println!("Response body:");
println!("{}", resp.body_str());